pages/lib/filters/readableDate.js

8 lines
179 B
JavaScript
Raw Normal View History

2024-10-04 09:45:51 +00:00
const dayjs = require('dayjs');
const utc = require('dayjs/plugin/utc');
dayjs.extend(utc);
2023-04-02 08:31:07 +00:00
module.exports = (date) => {
2024-10-04 09:45:51 +00:00
return dayjs(date).utc().format('YYYY年M月D日');
2023-04-02 08:31:07 +00:00
};