Sha256: bcd82d1d28a25e3070e897582e66e4f417088061f0ad4d017b9866f16b1a2fe4

Contents?: true

Size: 195 Bytes

Versions: 19

Compression:

Stored size: 195 Bytes

Contents

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;
};

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
ela-4.1.6 node_modules/underscore.string/helper/strRepeat.js
ela-4.1.5 node_modules/underscore.string/helper/strRepeat.js
ela-4.1.4 node_modules/underscore.string/helper/strRepeat.js
ela-4.1.3 node_modules/underscore.string/helper/strRepeat.js
ela-4.1.2 node_modules/underscore.string/helper/strRepeat.js
ela-4.1.1 node_modules/underscore.string/helper/strRepeat.js
ela-4.1.0 node_modules/underscore.string/helper/strRepeat.js
ela-4.0.0 node_modules/underscore.string/helper/strRepeat.js
ela-3.4.3 node_modules/underscore.string/helper/strRepeat.js
ela-3.4.2 node_modules/underscore.string/helper/strRepeat.js
ela-3.4.0 node_modules/underscore.string/helper/strRepeat.js
ela-3.3.1 node_modules/underscore.string/helper/strRepeat.js
ela-3.3.0 node_modules/underscore.string/helper/strRepeat.js
ela-3.2.0 node_modules/underscore.string/helper/strRepeat.js
ela-3.1.1 node_modules/underscore.string/helper/strRepeat.js
ela-3.1.0 node_modules/underscore.string/helper/strRepeat.js
ela-3.0.0 node_modules/underscore.string/helper/strRepeat.js
ela-2.0.0 node_modules/underscore.string/helper/strRepeat.js
ela-1.1.0 node_modules/underscore.string/helper/strRepeat.js