dbruinsma / fhir-util

This is a utility library to handle FHIR resources.

Home Page:https://docs.molit.eu/fhir-util/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FHIR Util

Build Status Coverage Status npm NPM

This is a utility library to handle FHIR resources.

Installation

Install like a normal npm dependency.

npm i @molit/fhir-util

Usage

Import the library and use the functions of the library.

import * as fhirUtil from "@molit/fhir-util";

let name = fhirUtil.getStringFromHumanName(patient.name);

Tree shaking is also supported. 🌲

import { getStringFromHumanName } from "@molit/fhir-util";

let name = getStringFromHumanName(patient.name);

Documentation

See full documentation here: https://docs.molit.eu/fhir-util/

About

This is a utility library to handle FHIR resources.

https://docs.molit.eu/fhir-util/

License:Apache License 2.0


Languages

Language:JavaScript 100.0%