1.1.2 • Published 3 years ago

insync-date v1.1.2

Weekly downloads
1
License
MIT
Repository
-
Last release
3 years ago

insync-date

Date utilities for InSync.

Installation

Has external dependency to ramda. So make sure ramda is available in your project.

NPM

npm install insync-date

Yarn

yarn add insync-date

Usage

ES6 import

import { parseInSyncDate } from 'insync-date';

const parsed = parseInSyncDate('2019-10-11T11:55:38.511186Z');

CommonJs

var InSyncDate = require('insync-date');

var parsed = InSyncDate.parseInSyncDate('2019-10-11T11:55:38.511186Z');

Documentation

See docs (private repo) for API documentation

Development

Building

First install all dependencies:

yarn install

To build module and library.

yarn build

To test

yarn test

To lint

yarn lint