A function that generated simple random string with specified length.
npm install @cybjs/random-string
ES6 module use case:
import { randomString } from "@cybjs/random-string";
console.info(randomString(32));
CommonJS module use case:
const { randomString } = require("@cybjs/random-string");
console.info(randomString(32));