/** * Get current UNIX time, in seconds */ export function time(): number { return Math.floor(new Date().getTime() / 1000); }