aboutsummaryrefslogtreecommitdiff
path: root/node_modules/vali-date/readme.md
blob: b6943363d667f74d0ec8d465564843f12002c50f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# vali-date [![Build Status](https://travis-ci.org/SamVerschueren/vali-date.svg?branch=master)](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)