mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-09 08:30:06 -04:00
14 lines
268 B
JavaScript
14 lines
268 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
|