UNPKG

id-generators

Version:

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

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