Sha256: 23d5e61bc7ec4965caeee922c601408b09b40f8192056b67b8a2693ccc23d139

Contents?: true

Size: 610 Bytes

Versions: 47

Compression:

Stored size: 610 Bytes

Contents

"use strict";

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

module.exports = function (other) {
	var i, length;
	value(this);
	value(other);
	length = toPosInt(this.length);
	if (length !== toPosInt(other.length)) return false;
	for (i = 0; i < length; ++i) {
		if (objHasOwnProperty.call(this, i) !== objHasOwnProperty.call(other, i)) {
			return false;
		}
		if (!eq(this[i], other[i])) return false;
	}
	return true;
};

Version data entries

47 entries across 47 versions & 3 rubygems

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