UNPKG

ghost

Version:

The professional publishing platform

8 lines (7 loc) 245 B
module.exports = function dateToDatabaseString(date) { if (typeof date === 'string') { // SQLite fix when reusing other dates from the db return date; } return date.toISOString().replace('Z','').replace('T', ' '); };