aboutsummaryrefslogtreecommitdiffstats
path: root/build/tasks/lib/getTimestamp.js
blob: c3c8aed112aa7a2dea9e4b24d5b1e6f6f7798d99 (plain)
1
2
3
4
5
6
7
8
9
"use strict";

module.exports = function getTimestamp() {
	const now = new Date();
	const hours = now.getHours().toString().padStart( 2, "0" );
	const minutes = now.getMinutes().toString().padStart( 2, "0" );
	const seconds = now.getSeconds().toString().padStart( 2, "0" );
	return `${hours}:${minutes}:${seconds}`;
};