dotfiles/.vscode/extensions/saviorisdead.RustyCode-0.18.0/node_modules/underscore.string/helper/strRepeat.js

10 lines
195 B
JavaScript
Raw Normal View History

2016-09-11 09:29:13 +01:00
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;
};