Sha256: f6942540343b86897cb52ce006017405bf15849028c147ad666bf662584f73f3

Contents?: true

Size: 711 Bytes

Versions: 47

Compression:

Stored size: 711 Bytes

Contents

// Thanks
// @rauchma http://www.2ality.com/2014/01/efficient-string-repeat.html
// @mathiasbynens https://github.com/mathiasbynens/String.prototype.repeat/blob/4a4b567def/repeat.js

"use strict";

var value     = require("../../../object/valid-value")
  , toInteger = require("../../../number/to-integer");

module.exports = function (count) {
	var str = String(value(this)), result;
	count = toInteger(count);
	if (count < 0) throw new RangeError("Count must be >= 0");
	if (!isFinite(count)) throw new RangeError("Count must be < ∞");

	result = "";
	while (count) {
		if (count % 2) result += str;
		if (count > 1) str += str;
		// eslint-disable-next-line no-bitwise
		count >>= 1;
	}
	return result;
};

Version data entries

47 entries across 47 versions & 3 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/es5-ext/string/#/repeat/shim.js
govuk_publishing_components-18.0.0 node_modules/es5-ext/string/#/repeat/shim.js
govuk_publishing_components-17.21.0 node_modules/es5-ext/string/#/repeat/shim.js
govuk_publishing_components-17.20.0 node_modules/es5-ext/string/#/repeat/shim.js
govuk_publishing_components-17.19.1 node_modules/es5-ext/string/#/repeat/shim.js
govuk_publishing_components-17.19.0 node_modules/es5-ext/string/#/repeat/shim.js
govuk_publishing_components-17.18.0 node_modules/es5-ext/string/#/repeat/shim.js
govuk_publishing_components-17.17.0 node_modules/es5-ext/string/#/repeat/shim.js
govuk_publishing_components-17.16.0 node_modules/es5-ext/string/#/repeat/shim.js
govuk_publishing_components-17.15.0 node_modules/es5-ext/string/#/repeat/shim.js
govuk_publishing_components-17.14.0 node_modules/es5-ext/string/#/repeat/shim.js
govuk_publishing_components-17.13.0 node_modules/es5-ext/string/#/repeat/shim.js
govuk_publishing_components-17.12.2 node_modules/es5-ext/string/#/repeat/shim.js
govuk_publishing_components-17.12.1 node_modules/es5-ext/string/#/repeat/shim.js
govuk_publishing_components-17.12.0 node_modules/es5-ext/string/#/repeat/shim.js
govuk_publishing_components-17.11.0 node_modules/es5-ext/string/#/repeat/shim.js
govuk_publishing_components-17.10.0 node_modules/es5-ext/string/#/repeat/shim.js
govuk_publishing_components-17.9.0 node_modules/es5-ext/string/#/repeat/shim.js
govuk_publishing_components-17.8.0 node_modules/es5-ext/string/#/repeat/shim.js
govuk_publishing_components-17.7.0 node_modules/es5-ext/string/#/repeat/shim.js