StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
635 B
45 lines
635 B
4 years ago
|
# vali-date [](https://travis-ci.org/SamVerschueren/vali-date)
|
||
|
|
||
|
> Validate a date.
|
||
|
|
||
|
|
||
|
## Install
|
||
|
|
||
|
```
|
||
|
$ npm install --save vali-date
|
||
|
```
|
||
|
|
||
|
|
||
|
## Usage
|
||
|
|
||
|
```js
|
||
|
const validate = require('vali-date');
|
||
|
|
||
|
validate('foo');
|
||
|
//=> false
|
||
|
|
||
|
validate('2015-12-15T12:00:00Z');
|
||
|
//=> true
|
||
|
|
||
|
validate('2015-12-15T12:00:00+01:00');
|
||
|
//=> true
|
||
|
```
|
||
|
|
||
|
|
||
|
## API
|
||
|
|
||
|
### validate(date)
|
||
|
|
||
|
Returns a boolean indicating if the date provided is valid or not.
|
||
|
|
||
|
#### date
|
||
|
|
||
|
Type: `string`
|
||
|
|
||
|
The date that should be validated.
|
||
|
|
||
|
|
||
|
## License
|
||
|
|
||
|
MIT © [Sam Verschueren](http://github.com/SamVerschueren)
|