4 lines
123 B
JavaScript
4 lines
123 B
JavaScript
|
module.exports = function dateToDatabaseString(date) {
|
||
|
return date.toISOString().replace('Z','').replace('T', ' ');
|
||
|
};
|