UNPKG

kuuid

Version:

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

7 lines (5 loc) 168 B
// generate a timestamp - number of milliseconds since the epoch export function tsms(t) { const d = t ? new Date(t) : new Date() return Math.floor(d.getTime()) }