You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
497 B
21 lines
497 B
|
2 years ago
|
/**
|
||
|
|
* Adds zero to strings shorter than two characters.
|
||
|
|
*
|
||
|
|
* @param {number} number
|
||
|
|
* @returns {string}
|
||
|
|
*/
|
||
|
|
function pad (number) {
|
||
|
|
return number < 10 ? `0${number}` : number.toString()
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Returns a timestamp in the format of `hours:minutes:seconds`
|
||
|
|
*/
|
||
|
|
export default function getTimeStamp () {
|
||
|
|
const date = new Date()
|
||
|
|
const hours = pad(date.getHours())
|
||
|
|
const minutes = pad(date.getMinutes())
|
||
|
|
const seconds = pad(date.getSeconds())
|
||
|
|
return `${hours}:${minutes}:${seconds}`
|
||
|
|
}
|