1.2.7 • Published 3 years ago

js-date-to-sql-datetime v1.2.7

Weekly downloads
1
License
ISC
Repository
github
Last release
3 years ago

TOC

Installation

npm i js-date-to-sql-datetime

Convert to SQL string

returns a sql-friendly string from a JS Date object or POSIX timestamp.

const expect = require('chai').expect;
const toSQLDate = require('js-date-to-sql-datetime');

toSQLDate(new Date(1604940393706)); // '2020-11-09 11:46:33'
toSQLDate(1604940393706);           // '2020-11-09 11:46:33'
1.2.7

3 years ago

1.1.7

3 years ago

1.1.6

3 years ago

1.1.4

3 years ago

1.1.3

3 years ago

1.0.2

4 years ago

1.0.3

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago