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.
willaengine/resources/js/Global/utils/date/time.js

14 lines
287 B

const getTime = (date = null) => {
date = date ? date : new Date();
let h = addZero(date.getHours());
let m = addZero(date.getMinutes());
return h + ":" + m;
};
const addZero= (i) => {
if (i < 10) {
i = "0" + i;
}
return i;
};
export { getTime };