Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 391 Bytes

README.md

File metadata and controls

16 lines (12 loc) · 391 Bytes

UID

Generate (almost) unique ids.

Install

npm i thesuitcase-uid

Usage

import uid from 'thesuitcase-uid';

let id = uid(); // Output: an id which is 6 characters long.
let longId = uid(3); // Output: an id which is 18 characters long (3 * 6)

Quality

js-standard-style