Skip to content

MySQL Timestamp support for javascript's Date object.

License

Notifications You must be signed in to change notification settings

Okoyl/mysqldate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MySQL Date for Javascript

extends javascript's Date object with four new methods designed to assist with handling MySQL Timestamps.

Examples

toMysqlDate & toMysqlUTCDate methods:

var date = new Date();
date.toMysqlDate();         // Outputs: '2016-08-28 22:45:37' (String)
date.toMysqlUTCDate();      // Outputs: '2016-08-28 19:45:37' (String)

fromMysqlDate & fromMysqlUTCDate methods:

Date.fromMysqlDate('1979-03-28 23:45:37');       // Outputs: (Date object)
Date.fromMysqlUTCDate('2013-03-28 11:11:52');    // Outputs: (Date object)

Installtion

Installation Using NPM

npm install mysqldate

Usage:

require('mysqldate');

Installation Using Bower

bower install mysqldate

Insert before your scripts:

<script src="bower_components/mysqldate/mysqldate.js" type="text/javascript"></script>

About

MySQL Timestamp support for javascript's Date object.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published