|
11 ماه پیش | |
---|---|---|
.. | ||
index.js | 11 ماه پیش | |
license | 11 ماه پیش | |
package.json | 11 ماه پیش | |
readme.md | 11 ماه پیش |
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