strRepeat.js 195 B

123456789
  1. module.exports = function strRepeat(str, qty){
  2. if (qty < 1) return '';
  3. var result = '';
  4. while (qty > 0) {
  5. if (qty & 1) result += str;
  6. qty >>= 1, str += str;
  7. }
  8. return result;
  9. };