1.1.0 • Published 2 years ago
@cybjs/random-string v1.1.0
random-string
A function that generated simple random string with specified length.
Installation
npm install @cybjs/random-string
Usage
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));