UNPKG

abbott-methods

Version:

abbott,methods,method,functions,function

12 lines (10 loc) 349 B
import {timeNewDate} from './timeNewDate' /** * @description 获取时间戳 * @param {*} [timeValue] * @returns {Number|Null} */ export const timestamp = (timeValue: any = new Date()) => { const theNewDate = timeValue ? timeNewDate(timeValue) : new Date() return theNewDate ? ~~(theNewDate.getTime() / 1000).toFixed(0) : null }