mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-09 08:30:06 -04:00
13 lines
278 B
JavaScript
13 lines
278 B
JavaScript
const dayjs = require('dayjs')
|
|
const utc = require('dayjs/plugin/utc')
|
|
dayjs.extend(utc)
|
|
|
|
const date = {}
|
|
|
|
date.getUTC = function (d = null) {
|
|
if (typeof d === 'string') return dayjs.utc(d).startOf('d')
|
|
|
|
return dayjs.utc().startOf('d')
|
|
}
|
|
|
|
module.exports = date
|