aboutsummaryrefslogtreecommitdiffstats
path: root/build/tasks/lib/getTimestamp.js
diff options
context:
space:
mode:
Diffstat (limited to 'build/tasks/lib/getTimestamp.js')
-rw-r--r--build/tasks/lib/getTimestamp.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/tasks/lib/getTimestamp.js b/build/tasks/lib/getTimestamp.js
index c3c8aed11..4706353c5 100644
--- a/build/tasks/lib/getTimestamp.js
+++ b/build/tasks/lib/getTimestamp.js
@@ -5,5 +5,5 @@ module.exports = function getTimestamp() {
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}`;
+ return `${ hours }:${ minutes }:${ seconds }`;
};