npm install random-second> Generate a random second.



$ npm install --save random-second
`
Usage
`js
var randomSecond = require('random-second');
// API
// - randomSecond([options]);
// options
// - min
// - max
`By default, returns a minute from
0 to 59. Idea is for generating a clock time.
`js
randomSecond();
// => 37
`Optionally specify min, max, or both to limit the range.
`js
randomSecond({ min: 10 });
// => 18randomSecond({ max: 40 });
// => 23
randomSecond({ min: 10, max: 40 });
// => 32
``