UNPKG

random-letters

Version:

Tiny module to generate random letters with specific length.

14 lines (9 loc) 272 B
# random-letters Tiny module for generating random letters ## Getting Started Install the module with: `npm install random-string` ```javascript var random = require('random-letters'); var x = random(8); // contains 8 random letters console.log(x); // 'rKIhmftb' ```