Blame view

node_modules/underscore.string/helper/strRepeat.js 195 Bytes
f7563de62   Palak Handa   first commit
1
2
3
4
5
6
7
8
9
  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;
  };