repeat-string
Repeat the given string n times. Fastest implementation for repeating a string.
Install
Install with npm:
$ npm install --save repeat-stringUsage
Repeat the given string the specified number of times.
Example:
Example
var repeat = require('repeat-string');
repeat('A', 5);
//=> AAAAAParams
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):
Run the benchmarks
Install dev dependencies:
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
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:
Running tests
Install dev dependencies:
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.
Last updated
Was this helpful?