UNPKG

2.29 kBMarkdownView Raw
1# repeat-string [![NPM version](https://badge.fury.io/js/repeat-string.svg)](http://badge.fury.io/js/repeat-string)
2
3> Fastest implementation for repeating a string.
4
5## Install with [npm](npmjs.org)
6
7```bash
8npm i repeat-string --save
9```
10### Install with [bower](https://github.com/bower/bower)
11
12```bash
13bower install repeat-string --save
14```
15
16## Usage
17
18```js
19var repeat = require('repeat-string');
20
21repeat('A', 5);
22//=> AAAAA
23```
24
25## Author
26
27**Jon Schlinkert**
28
29+ [github/jonschlinkert](https://github.com/jonschlinkert)
30+ [twitter/jonschlinkert](http://twitter.com/jonschlinkert)
31
32### Other javascript/node.js utils
33
34Other projects that I maintain:
35
36 - [assemble](https://github.com/jonschlinkert/assemble)
37 - [verb](https://github.com/jonschlinkert/verb)
38 - [less.js](https://github.com/jonschlinkert/less.js)
39 - [handlebars-helpers](https://github.com/jonschlinkert/handlebars-helpers)
40 - [arr](https://github.com/jonschlinkert/arr)
41 - [arr-diff](https://github.com/jonschlinkert/arr-diff)
42 - [array-last](https://github.com/jonschlinkert/array-last)
43 - [array-slice](https://github.com/jonschlinkert/array-slice)
44 - [array-sum](https://github.com/jonschlinkert/array-sum)
45 - [arrayify-compact](https://github.com/jonschlinkert/arrayify-compact)
46 - [compact-object](https://github.com/jonschlinkert/compact-object)
47 - [delete](https://github.com/jonschlinkert/delete)
48 - [for-in](https://github.com/jonschlinkert/for-in)
49 - [for-own](https://github.com/jonschlinkert/for-own)
50 - [has-any](https://github.com/jonschlinkert/has-any)
51 - [has-value](https://github.com/jonschlinkert/has-value)
52 - [is-number](https://github.com/jonschlinkert/is-number)
53 - [is-plain-object](https://github.com/jonschlinkert/is-plain-object)
54 - [mixin-deep](https://github.com/jonschlinkert/mixin-deep)
55 - [mixin-object](https://github.com/jonschlinkert/mixin-object)
56 - [object-length](https://github.com/jonschlinkert/object-length)
57 - [omit-empty](https://github.com/jonschlinkert/omit-empty)
58 - [reduce-object](https://github.com/jonschlinkert/reduce-object)
59
60## License
61Copyright (c) 2014 Jon Schlinkert
62Released under the MIT license
63
64***
65
66_This file was generated by [verb](https://github.com/assemble/verb) on December 06, 2014. To update, run `npm i -g verb && verb`._
\No newline at end of file