mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
10 lines
319 B
JavaScript
10 lines
319 B
JavaScript
|
"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}`;
|
||
|
};
|