mirror of
https://github.com/iptv-org/iptv.git
synced 2025-05-11 17:40:03 -04:00
12 lines
172 B
JavaScript
12 lines
172 B
JavaScript
const dayjs = require('dayjs')
|
|
const utc = require('dayjs/plugin/utc')
|
|
|
|
dayjs.extend(utc)
|
|
|
|
const date = {}
|
|
|
|
date.utc = d => {
|
|
return dayjs.utc(d)
|
|
}
|
|
|
|
module.exports = date
|