|
hai 11 meses | |
---|---|---|
.. | ||
index.js | hai 11 meses | |
license | hai 11 meses | |
package.json | hai 11 meses | |
readme.md | hai 11 meses |
Validate a date.
$ npm install --save vali-date
const validate = require('vali-date');
validate('foo');
//=> false
validate('2015-12-15T12:00:00Z');
//=> true
validate('2015-12-15T12:00:00+01:00');
//=> true
Returns a boolean indicating if the date provided is valid or not.
Type: string
The date that should be validated.
MIT © Sam Verschueren