Skip to content

Instantly share code, notes, and snippets.

@aquarla
Created April 25, 2022 08:14
Show Gist options
  • Select an option

  • Save aquarla/0473163eaaa039627ece78d041516fe7 to your computer and use it in GitHub Desktop.

Select an option

Save aquarla/0473163eaaa039627ece78d041516fe7 to your computer and use it in GitHub Desktop.
なんちゃってSnowflake
export default function pseudoSnowflake() {
const now = new Date();
const time = now.getTime();
return (BigInt(time) << BigInt(16) + BigInt(Math.floor(Math.random(2**16)))).toString();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment