moment-random
v1.1.0
Published
Generates a random momentjs object
Readme
moment-random
Generates a new random moment.js object
Install
make sure you have moment installed
npm or yarn
$ npm install --save moment-random$ yarn add moment-randomUsage
Just require it like any other library
const momentRandom = require('moment-random');
momentRandom();
// > random date in the pastYou can also specify an interval
momentRandom(end)
// > random date between 0 unix time and {end} dates
momentRandom(end, start)
// > random date between {start} and {end} datesArguments
end, start- anything a moment constructor accepts (see moment.js docs )
