zrnf
v1.0.2
Published
zrnf is your go-to for quick random strings, numbers, or symbols in JavaScript. Just give it an input and length, and it’ll handle the rest!
Downloads
9
Readme
zrnf
zrnf is your go-to for quick random strings, numbers, or symbols in JavaScript. Just give it an input and length, and it’ll handle the rest!.
Installation
To install zrnf, use npm:
npm install zrnf
Usage
const zrnf = require('zrnf');
let result = zrnf.random("exampleString", 5);
console.log(result); // Outputs a random 5-character string from "exampleString"
const zrnf = require('zrnf');
let result = zrnf.random("exampleString");
console.log(result); // Outputs a random string with the same length as "exampleString"