Skip to content

Arikato111/char-random

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

char random

Github License GitHub Package.json Version GitHub Issues GitHub Pull Requests GitHub Contributors

random one or many text

Installing

Install with NPM

npm install char-random

or install with Yarn

yarn add char-random

Example

With no config

import charRandom from "char-random";

let char = charRandom()

With config

import charRandom from "char-random";

let char = charRandom({
    count: 32,
    allowLowerCase: true,
    allowNumber: true
})