1
0
James Ketrenos dca37b1723 Seeding server code from ketr.photos
Signed-off-by: James Ketrenos <james.p.ketrenos@intel.com>
2020-04-20 12:13:22 -07:00

16 lines
388 B
JavaScript

"use strict";
function twoDigit(number) {
return ("0" + number).slice(-2);
}
function timestamp(date) {
date = date || new Date();
return [ date.getFullYear(), twoDigit(date.getMonth() + 1), twoDigit(date.getDate()) ].join("-") +
" " +
[ twoDigit(date.getHours()), twoDigit(date.getMinutes()), twoDigit(date.getSeconds()) ].join(":");
}
module.exports = {
timestamp
};