npm install string-repeat
$ npm install --save repeat
`
Usage
`js
var repeat = require('string-repeat');
var example = repeat('repeat ', 5);
//=> repeat repeat repeat repeat repeat
console.log(example);
//=> repeat repeat repeat repeat repeat
`
API
$3
##### input
Type: ` string `
String to be repeated
##### times
Type: ` number ``