UNPKG

id-generators

Version:

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

15 lines (12 loc) 335 B
'use strict'; module.exports = function (option) { /** * https://github.com/ai/nanoid */ const { customAlphabet } = require('nanoid'); const alphabet = '0123456789abcdefghijklmnopqrstuvwxyz'; option = option || {}; const size = option.size || 24; const nanoid = customAlphabet(alphabet, size); return nanoid; };