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