mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-18 16:01:40 +03:00
4 lines
123 B
JavaScript
4 lines
123 B
JavaScript
|
module.exports = function dateToDatabaseString(date) {
|
||
|
return date.toISOString().replace('Z','').replace('T', ' ');
|
||
|
};
|