You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
860 B
JavaScript
34 lines
860 B
JavaScript
// date.js
|
|
export function formatDate(date, fmt) {
|
|
if (/(y+)/.test(fmt)) {
|
|
fmt = fmt.replace(RegExp.$1, (date.getFullYear() + '').substr(4 - RegExp.$1.length));
|
|
}
|
|
let o = {
|
|
'M+': date.getMonth() + 1,
|
|
'd+': date.getDate(),
|
|
'h+': date.getHours(),
|
|
'm+': date.getMinutes(),
|
|
's+': date.getSeconds()
|
|
};
|
|
for (let k in o) {
|
|
if (new RegExp(`(${k})`).test(fmt)) {
|
|
let str = o[k] + '';
|
|
fmt = fmt.replace(RegExp.$1, (RegExp.$1.length === 1) ? str : padLeftZero(str));
|
|
}
|
|
}
|
|
return fmt;
|
|
};
|
|
|
|
function padLeftZero(str) {
|
|
return ('00' + str).substr(str.length);
|
|
};
|
|
|
|
export function convertDate(date) {
|
|
if (date != null && date != undefined && date.length > 5) {
|
|
var time = "20" + date.substring(0, 2) + "-" + date.substring(2, 4) + "-" + date.substring(4, 6);
|
|
return time;
|
|
} else {
|
|
return date;
|
|
}
|
|
};
|