Skip to content

Instantly share code, notes, and snippets.

@virgenherrera
Created May 9, 2018 21:01
Show Gist options
  • Save virgenherrera/11cb90b5ae54a35b7bce44b463df26c3 to your computer and use it in GitHub Desktop.
Save virgenherrera/11cb90b5ae54a35b7bce44b463df26c3 to your computer and use it in GitHub Desktop.
function ObjectId() {
const timestamp = (new Date().getTime() / 1000 | 0).toString(16);
const randomize = () => Math.random() * 16 | 0;
const randStr = 'xxxxxxxxxxxxxxxx'.replace(/x/g, () => randomize().toString(16)).toLowerCase();
return `${timestamp}${randStr}`;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment