repeat-string

Repeat the given string n times. Fastest implementation for repeating a string.

Install

Install with npmarrow-up-right:

$ npm install --save repeat-string

Usage

Repeat the given string the specified number of times.

Example:

Example

var repeat = require('repeat-string');
repeat('A', 5);
//=> AAAAA

Params

  • string {String}: The string to repeat

  • number {Number}: The number of times to repeat the string

  • returns {String}: Repeated string

Benchmarks

Repeat string is significantly faster than the native method (which is itself faster than repeatingarrow-up-right):

Run the benchmarks

Install dev dependencies:

About

repeat-elementarrow-up-right: Create an array by repeating the given value n times. | homepagearrow-up-right

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issuearrow-up-right.

Contributors

Building docs

(This document was generated by verb-generate-readmearrow-up-right (a verbarrow-up-right generator), please don't edit the readme directly. Any changes to the readme must be made in .verb.mdarrow-up-right.)

To generate the readme and API documentation with verbarrow-up-right:

Running tests

Install dev dependencies:

Author

Jon Schlinkert

License

Copyright © 2016, Jon Schlinkertarrow-up-right. Released under the MIT licensearrow-up-right.

This file was generated by verb-generate-readmearrow-up-right, v0.2.0, on October 23, 2016.

Last updated

Was this helpful?