web_lib

Common web application libraries
git clone https://radroots.dev/git/web_lib.git
Log | Files | Refs | LICENSE

index.ts (153B)


      1 export const time_now_ms = (): number => Math.floor(new Date().getTime() / 1000);
      2 export const time_now_s = (): number => Math.floor(Date.now() / 1000);