aboutsummaryrefslogtreecommitdiffstats
path: root/build/tasks/lib/getTimestamp.js
blob: bca40bc6bd48c5abb2ef6eed619fccd807686779 (plain)
1
2
3
4
5
6
7
export default 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 }`;
}