mirror of
https://github.com/iptv-org/epg
synced 2025-12-17 02:47:02 -05:00
15 lines
254 B
JavaScript
15 lines
254 B
JavaScript
import dayjs from 'dayjs'
|
|
import utc from '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')
|
|
}
|
|
|
|
export default date
|