File size: 138 Bytes
ea35075
 
 
 
 
1
2
3
4
5
6
import dayjs from 'dayjs'

export function getCurrentTime(format = 'YYYY_MM_DD_HH_mm_ss') {
    return dayjs(new Date()).format(format)
}