blob: b60d8760f9223929f5e7491feefc7bc4b6e924f2 [file] [log] [blame]
module.exports = function strRepeat(str, qty){
if (qty < 1) return '';
var result = '';
while (qty > 0) {
if (qty & 1) result += str;
qty >>= 1, str += str;
}
return result;
};