summaryrefslogtreecommitdiff
path: root/src/web/app/common/scripts/date-stringify.js
blob: 48e19704d56c010437ba7a573f3ee3059fc282d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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()]})`
	);
};