tweb-i2p/src/helpers/tsNow.ts
2021-12-11 20:37:08 +04:00

5 lines
111 B
TypeScript

export default function tsNow(seconds?: true) {
const t = Date.now();
return seconds ? t / 1000 | 0 : t;
}