Date utilities for InSync.
Has external dependency to ramda. So make sure ramda is available in your project.
npm install insync-date
yarn add insync-date
import { parseInSyncDate } from 'insync-date';
const parsed = parseInSyncDate('2019-10-11T11:55:38.511186Z');
var InSyncDate = require('insync-date');
var parsed = InSyncDate.parseInSyncDate('2019-10-11T11:55:38.511186Z');
See docs (private repo) for API documentation
First install all dependencies:
yarn install
To build module and library.
yarn build
To test
yarn test
To lint
yarn lint
Generated using TypeDoc