mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-04 19:59:54 +08:00
5 lines
163 B
JavaScript
5 lines
163 B
JavaScript
const dayjs = require('dayjs');
|
|
dayjs.extend(require('dayjs/plugin/customParseFormat'));
|
|
|
|
module.exports = (date, ...options) => dayjs(date, ...options).toDate();
|