Generate short unique id string locally. Generate
7921unique id string with only length <=2.
npm i --save short-unique-string
var generator = require('short-unique-string');
var uniqueId = generator({
number: true,
symbol: true
})
uniqueId(); // '0'
// ...
uniqueId(); // 'aY'Only one API generator(opts), opts is the unique parameter which is a pure object:
number: contain number string, default isfalse.symbol: contain symbol string, default isfalse.
MIT@hustcc.