0.0.1 • Published 7 years ago

imoment v0.0.1

Weekly downloads
1
License
Apache-2.0
Repository
github
Last release
7 years ago

imoment

An immutable wrapper around momentjs.

Install moment since it's a peer depenency of imoment

npm install --save moment

Install imoment

npm install --save imoment

Use imoment as a drop-in replacement for moment. E.g.

import imoment from 'imoment';

const im1 = imoment();
const im2 = im1.add(7, 'days');

console.log(im1.isSame(im2)); // should print out 'false'