Skip to content

Instantly share code, notes, and snippets.

@joparara
Created October 25, 2024 11:42
Show Gist options
  • Save joparara/b0599139b81e1d16a8118ae7a20bfc0b to your computer and use it in GitHub Desktop.
Save joparara/b0599139b81e1d16a8118ae7a20bfc0b to your computer and use it in GitHub Desktop.
nodejs random uniqid
function uniqid(prefix = "", random = false) {
const sec = Date.now() * 1000 + Math.random() * 1000;
const id = sec.toString(16).replace(/\./g, "").padEnd(14, "0");
return `${prefix}${id}${random ? `.${Math.trunc(Math.random() * 100000000)}`:""}`;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment