13 lines
213 B
Plaintext
13 lines
213 B
Plaintext
|
/* eslint-disable */
|
||
|
|
||
|
function formatMonthTitle(date) {
|
||
|
date = getDate(date);
|
||
|
return date.getFullYear() + '年' + (date.getMonth() + 1) + '月';
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
module.exports = {
|
||
|
formatMonthTitle: formatMonthTitle
|
||
|
};
|