Skip to content

Instantly share code, notes, and snippets.

@lac5
Created September 19, 2019 21:24
Show Gist options
  • Save lac5/39080ea082fb14a6442c509b94659004 to your computer and use it in GitHub Desktop.
Save lac5/39080ea082fb14a6442c509b94659004 to your computer and use it in GitHub Desktop.
export function now() {
let time = process.hrtime();
let date = BigInt(Date.now() - time[0] * 1000 - Math.floor(time[1] / 1000000));
date *= 1000000n;
date += BigInt(time[0]) * 1000000000n;
date += BigInt(time[1]);
return date;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment