Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

string_repeat

doaspx16ISC1.2.1

string repeat

string, string-repeat, repeat, repeat-string

readme

string-repeat

repeat string of supply

(function(test) { console.log(repeat('a', 1), 'a'); console.log(repeat('a', 2), 'aa'); console.log(repeat('a', 5), 'aaaaa'); console.log(repeat('repeat ', 1), 'repeat '); console.log(repeat('repeat ', 2), 'repeat repeat '); console.log(repeat('repeat ', 5), 'repeat repeat repeat repeat repeat '); })();

a a aa aa aaaaa aaaaa repeat repeat repeat repeat repeat repeat repeat repeat repeat repeat repeat repeat repeat repeat repeat repeat