mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-02-09 16:16:58 +01:00
17 lines
525 B
JavaScript
17 lines
525 B
JavaScript
const createSnapshotVersion = () => {
|
|
const date = new Date();
|
|
const year = date.getFullYear();
|
|
const month = date.getMonth().toString().padStart(2, "0");
|
|
const day = date.getDate().toString().padStart(2, "0");
|
|
|
|
const hours = date.getHours().toString().padStart(2, "0");
|
|
const minutes = date.getMinutes().toString().padStart(2, "0");
|
|
const seconds = date.getSeconds().toString().padStart(2, "0");
|
|
|
|
return `${year}${month}${day}-${hours}${minutes}${seconds}`;
|
|
};
|
|
|
|
module.exports = {
|
|
createSnapshotVersion
|
|
};
|