Sha256: e3782374ebffb79e5a6f5d1efa7a4c1be944bcffd5a2ec9338a9ce72c94f4ad2

Contents?: true

Size: 587 Bytes

Versions: 46

Compression:

Stored size: 587 Bytes

Contents

"use strict";

var toPosInt          = require("../../number/to-pos-integer")
  , callable          = require("../../object/valid-callable")
  , value             = require("../../object/valid-value")
  , objHasOwnProperty = Object.prototype.hasOwnProperty
  , call              = Function.prototype.call;

module.exports = function (cb /*, thisArg*/) {
	var i, self, thisArg;

	self = Object(value(this));
	callable(cb);
	thisArg = arguments[1];

	for (i = toPosInt(self.length) - 1; i >= 0; --i) {
		if (objHasOwnProperty.call(self, i)) call.call(cb, thisArg, self[i], i, self);
	}
};

Version data entries

46 entries across 46 versions & 3 rubygems

Version Path
govuk_publishing_components-18.0.0 node_modules/es5-ext/array/#/for-each-right.js
govuk_publishing_components-17.21.0 node_modules/es5-ext/array/#/for-each-right.js
govuk_publishing_components-17.20.0 node_modules/es5-ext/array/#/for-each-right.js
govuk_publishing_components-17.19.1 node_modules/es5-ext/array/#/for-each-right.js
govuk_publishing_components-17.19.0 node_modules/es5-ext/array/#/for-each-right.js
govuk_publishing_components-17.18.0 node_modules/es5-ext/array/#/for-each-right.js
govuk_publishing_components-17.17.0 node_modules/es5-ext/array/#/for-each-right.js
govuk_publishing_components-17.16.0 node_modules/es5-ext/array/#/for-each-right.js
govuk_publishing_components-17.15.0 node_modules/es5-ext/array/#/for-each-right.js
govuk_publishing_components-17.14.0 node_modules/es5-ext/array/#/for-each-right.js
govuk_publishing_components-17.13.0 node_modules/es5-ext/array/#/for-each-right.js
govuk_publishing_components-17.12.2 node_modules/es5-ext/array/#/for-each-right.js
govuk_publishing_components-17.12.1 node_modules/es5-ext/array/#/for-each-right.js
govuk_publishing_components-17.12.0 node_modules/es5-ext/array/#/for-each-right.js
govuk_publishing_components-17.11.0 node_modules/es5-ext/array/#/for-each-right.js
govuk_publishing_components-17.10.0 node_modules/es5-ext/array/#/for-each-right.js
govuk_publishing_components-17.9.0 node_modules/es5-ext/array/#/for-each-right.js
govuk_publishing_components-17.8.0 node_modules/es5-ext/array/#/for-each-right.js
govuk_publishing_components-17.7.0 node_modules/es5-ext/array/#/for-each-right.js
govuk_publishing_components-17.6.1 node_modules/es5-ext/array/#/for-each-right.js