1.0.0 • Published 6 years ago

short-unique-string v1.0.0

Weekly downloads
4
License
MIT
Repository
github
Last release
6 years ago

short-unique-string

Generate short unique id string locally. Generate 7921 unique id string with only length <= 2.

Build Status Coverage Status npm

Usage

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 is false.
  • symbol: contain symbol string, default is false.

License

MIT@hustcc.