DefinitelyTyped/random-string/random-string-tests.ts
2016-04-27 21:53:46 -07:00

11 lines
175 B
TypeScript

import randomString = require('random-string');
console.log(randomString());
console.log(randomString({
length: 20,
numeric: true,
letters: true,
special: true
}));