east
Version:
node.js database migration tool for mongodb, sqlite, postgres, mysql, couchbase
12 lines (11 loc) • 337 B
JavaScript
module.exports = () => {
const now = new Date();
return Promise.resolve(
String(now.getFullYear()) +
String(now.getMonth() + 1).padStart(2, '0') +
String(now.getDate()).padStart(2, '0') +
String(now.getHours()).padStart(2, '0') +
String(now.getMinutes()).padStart(2, '0') +
String(now.getSeconds()).padStart(2, '0')
);
};