Sharkey/src/web/app/common/scripts/date-stringify.js
syuilo 6f6723e1c2 ✌️
2017-02-18 10:52:51 +09:00

13 lines
351 B
JavaScript

module.exports = date => {
if (typeof date == 'string') date = new Date(date);
return (
date.getFullYear() + '年' +
date.getMonth() + 1 + '月' +
date.getDate() + '日' +
' ' +
date.getHours() + '時' +
date.getMinutes() + '分' +
' ' +
`(${['日', '月', '火', '水', '木', '金', '土'][date.getDay()]})`
);
};