Skip to content

Instantly share code, notes, and snippets.

@dvdsmpsn
Forked from solenoid/gist:1372386
Created January 24, 2018 11:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dvdsmpsn/855ea95f91ae38808eb6bc6cd9fb2b51 to your computer and use it in GitHub Desktop.
Save dvdsmpsn/855ea95f91ae38808eb6bc6cd9fb2b51 to your computer and use it in GitHub Desktop.
javascript ObjectId generator
var mongoObjectId = function () {
var timestamp = (new Date().getTime() / 1000 | 0).toString(16);
return timestamp + 'xxxxxxxxxxxxxxxx'.replace(/[x]/g, function() {
return (Math.random() * 16 | 0).toString(16);
}).toLowerCase();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment