1.0.0 • Published 7 years ago
idable v1.0.0
A human readable ID for NodeJS.
Installation
npm i idableUsage
A human readable random number ID:
const idable = require('idable');
console.log(idable(8, true));
// => 98703713A human readable random letter ID:
const idable = require('idable');
console.log(idable(8, false));
// => locolagiA human readable random letter and number ID:
const idable = require('idable');
console.log(idable(8));
// => od64udim1.0.0
7 years ago