DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
195 Bytes
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;
};