UNPKG

kuuid

Version:

Time-sortable UUID - roughly time-sortable unique id generator

6 lines (5 loc) 167 B
// generate a timestamp - number of seconds since the epoch export function ts(t) { const d = t ? new Date(t) : new Date() return Math.floor(d.getTime() / 1000) }