nextUid.js 109 B

12345
  1. module.exports = function nextUid(len = 8) {
  2. return Math.random()
  3. .toString(36)
  4. .substr(len + 1)
  5. }