2025-07-31 22:29:01 +03:00
|
|
|
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
|