short-unique-string

1.0.0 • Public • Published

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.

Dependencies (0)

    Dev Dependencies (4)

    Package Sidebar

    Install

    npm i short-unique-string

    Weekly Downloads

    5

    Version

    1.0.0

    License

    MIT

    Unpacked Size

    2.65 kB

    Total Files

    5

    Last publish

    Collaborators

    • atool