UNPKG

wechaty-puppet-official-account

Version:
8 lines (7 loc) 177 B
export function getTimeStampString (): string { let now: number = new Date().getTime() if (now > 9999999999) { now = Math.ceil(now / 1000) } return now.toString() }