A library for unique code generation
For npm:
npm i unikey
For yarn:
yarn add unikey
For pnpm:
pnpm add unikey
import unikey from 'unikey';
const key = unikey(); // enf5a8t9
// ...
import unikey from 'unikey';
const key = unikey(16); // tcmd6gud23ga2f5p
// ...
import unikey from 'unikey';
const mixedKey = unikey(16, { case: 'mixed' }); // riQTUuoZ3iV9RQEH
const upperKey = unikey(16, { case: 'upper' }); // IAYNLQD8T3DJ63GR
// ...