UNPKG

id-generators

Version:

id-generators is small JavaScript library to generate ID with awesome Unique ID libraries.

13 lines (10 loc) 231 B
'use strict'; module.exports = function (option) { /** * https://github.com/ai/nanoid */ const { nanoid } = require('nanoid'); option = option || {}; const size = option.size || 21; return () => nanoid(size); };