|
il y a 11 mois | |
---|---|---|
.. | ||
index.js | il y a 11 mois | |
license | il y a 11 mois | |
package.json | il y a 11 mois | |
readme.md | il y a 11 mois |
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