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.
35 lines
635 B
35 lines
635 B
4 years ago
|
# postgres-date [![Build Status](https://travis-ci.org/bendrucker/postgres-date.svg?branch=master)](https://travis-ci.org/bendrucker/postgres-date) [![Greenkeeper badge](https://badges.greenkeeper.io/bendrucker/postgres-date.svg)](https://greenkeeper.io/)
|
||
|
|
||
|
> Postgres date column parser
|
||
|
|
||
|
|
||
|
## Install
|
||
|
|
||
|
```
|
||
|
$ npm install --save postgres-date
|
||
|
```
|
||
|
|
||
|
|
||
|
## Usage
|
||
|
|
||
|
```js
|
||
|
var parse = require('postgres-date')
|
||
|
parse('2011-01-23 22:15:51Z')
|
||
|
// => 2011-01-23T22:15:51.000Z
|
||
|
```
|
||
|
|
||
|
## API
|
||
|
|
||
|
#### `parse(isoDate)` -> `date`
|
||
|
|
||
|
##### isoDate
|
||
|
|
||
|
*Required*
|
||
|
Type: `string`
|
||
|
|
||
|
A date string from Postgres.
|
||
|
|
||
|
## License
|
||
|
|
||
|
MIT © [Ben Drucker](http://bendrucker.me)
|