Skip to content

falcronio/alphabet-generator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Alphabet Generator

Build Status npm version

Simple Alphabet Generator

How to use

var alpha = require('alphabet-generator');

// Get array of alphabets
console.log(alpha.get());

// Get alphabets in range
console.log(alpha.range('A', 'F').get());

// Get random alphabets
console.log(alpha.random().get());

// Get 3 random alphabets
console.log(alpha.random(3).get());

// Get lowercase/uppercase alphabets
console.log(alpha.upper().get());
console.log(alpha.lower().get());

// Chainable
console.log(alpha.range('A', 'F').random().lower().get());

License

MIT

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published