@dazzdeveloper/randomid-generator
v1.0.1
Published
Application generates a random alphanumeric ID string of a specified length. The generated ID consists of uppercase letters, lowercase letters, and digits. You can use this function to create unique identifiers for various purposes in your application.
Readme
index.js Description
Application generates a random alphanumeric ID string of a specified length. The generated ID consists of uppercase letters, lowercase letters, and digits. You can use this function to create unique identifiers for various purposes in your application.
Usage Example:
const randomID = require('@dazzdeveloper/randomid-generator');
const id = randomID(10); // Generates a random 10-character ID
console.log(id); // Example output: 'aZ3kLmP9qR'