Skip to content

Instantly share code, notes, and snippets.

@wawbz
Forked from larchanka/uniqid.js
Created March 31, 2017 08:28
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 wawbz/07359baebf6ea2b7d4279eee528eec0d to your computer and use it in GitHub Desktop.
Save wawbz/07359baebf6ea2b7d4279eee528eec0d to your computer and use it in GitHub Desktop.
JavaScript function that copies functionality of PHP's 'uniqid'.
(function () {
this.uniqid = function (pr, en) {
var pr = pr || '', en = en || false, result;
this.seed = function (s, w) {
s = parseInt(s, 10).toString(16);
return w < s.length ? s.slice(s.length - w) : (w > s.length) ? new Array(1 + (w - s.length)).join('0') + s : s;
};
result = pr + this.seed(parseInt(new Date().getTime() / 1000, 10), 8) + this.seed(Math.floor(Math.random() * 0x75bcd15) + 1, 5);
if (en) result += (Math.random() * 10).toFixed(8).toString();
return result;
};
})();
@wawbz
Copy link
Author

wawbz commented Mar 31, 2017

How to use:

  • uniqid() - returns 52643b81917b3
  • uniqid('prefix_') - returns prefix_52643bb682821
  • uniqid('prefix_', true) - returns prefix_52643bdf3b1fb7.38568327

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment