UNPKG

224 BJavaScriptView Raw
1module.exports = function(str, count) {
2 if (count < 1) {
3 return '';
4 }
5
6 var result = '';
7 while (count > 0) {
8 if (count & 1) {
9 result += str;
10 }
11 count >>= 1;
12 str += str;
13 }
14 return result;
15}