Repeat the given string n times. Fastest implementation for repeating a string.
Install
Install with npm:
$ npm install --save repeat-string
Usage
repeat
Repeat the given string
the specified number
of times.
Example:
Example
var repeat = ;;//=> AAAAA
Params
string
{String}: The string to repeatnumber
{Number}: The number of times to repeat the stringreturns
{String}: Repeated string
Benchmarks
Repeat string is significantly faster than the native method (which is itself faster than repeating):
# 2x repeat-string █████████████████████████ repeating █████████ native ██████████████████ # 3x repeat-string █████████████████████████ repeating ███████████ native ████████████████████ # 10x repeat-string █████████████████████████ repeating █████████ native ███████████████ # 50x repeat-string █████████████████████████ repeating █████ native ██████████ # 250x repeat-string █████████████████████████ repeating ████ native ████████ # 2000x repeat-string █████████████████████████ repeating ████ native ███████ # 20000x repeat-string █████████████████████████ repeating ███ native █████
Run the benchmarks
Install dev dependencies:
npm i -d && node benchmark
About
Related projects
repeat-element: Create an array by repeating the given value n times. | homepage
Contributing
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Contributors
Commits | Contributor |
---|---|
51 | jonschlinkert |
2 | LinusU |
2 | tbusser |
1 | doowb |
1 | wooorm |
Building docs
(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:
$ npm install -g verb verb-generate-readme && verb
Running tests
Install dev dependencies:
$ npm install -d && npm test
Author
Jon Schlinkert
License
Copyright © 2016, Jon Schlinkert. Released under the MIT license.
This file was generated by verb-generate-readme, v0.2.0, on October 23, 2016.