Repeat the given string n times. Fastest implementation for repeating a string.
npm install repeat-string> Repeat the given string n times. Fastest implementation for repeating a string.
Install with npm:
``sh`
$ npm install --save repeat-string
Repeat the given string the specified number of times.
Example:
Example
`js`
var repeat = require('repeat-string');
repeat('A', 5);
//=> AAAAA
Params
* string {String}: The string to repeatnumber
* {Number}: The number of times to repeat the stringreturns
* {String}: Repeated string
Repeat string is significantly faster than the native method (which is itself faster than repeating):
`sh2x
repeat-string █████████████████████████ (26,953,977 ops/sec)
repeating █████████ (9,855,695 ops/sec)
native ██████████████████ (19,453,895 ops/sec)
Run the benchmarks
Install dev dependencies:
`sh
npm i -d && node benchmark
`About
$3
repeat-element: Create an array by repeating the given value n times. | homepage
$3
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
$3
| Commits | Contributor
|
| --- | --- |
| 51 | jonschlinkert |
| 2 | LinusU |
| 2 | tbusser |
| 1 | doowb |
| 1 | wooorm |
$3
_(This document was generated by verb-generate-readme (a verb generator), please don't edit the readme directly. Any changes to the readme must be made in .verb.md.)_
To generate the readme and API documentation with verb:
`sh
$ npm install -g verb verb-generate-readme && verb
`$3
Install dev dependencies:
`sh
$ npm install -d && npm test
``Jon Schlinkert
* github/jonschlinkert
* twitter/jonschlinkert
Copyright © 2016, Jon Schlinkert.
Released under the MIT license.
*
_This file was generated by verb-generate-readme, v0.2.0, on October 23, 2016._