Sha256: e8d3a5ad46a14e95561ed8e91a417dc352c3c2b0888c51753f8852ef36f4d7ae

Contents?: true

Size: 1.29 KB

Versions: 46

Compression:

Stored size: 1.29 KB

Contents

"use strict";

module.exports = function (t, a) {
	var x, y;

	a(t({ 1: 1, 2: 2, 3: 3 }, { 1: 1, 2: 2, 3: 3 }), true, "Same");
	a(t({ 1: 1, 2: 2, 3: 3 }, { 1: 1, 2: 2, 3: 4 }), false,
		"Different property value");
	a(t({ 1: 1, 2: 2, 3: 3 }, { 1: 1, 2: 2 }), false,
		"Property only in source");
	a(t({ 1: 1, 2: 2 }, { 1: 1, 2: 2, 3: 4 }), false,
		"Property only in target");

	a(t("raz", "dwa"), false, "String: diff");
	a(t("raz", "raz"), true, "String: same");
	a(t("32", 32), false, "String & Number");

	a(t([1, "raz", true], [1, "raz", true]), true, "Array: same");
	a(t([1, "raz", undefined], [1, "raz"]), false, "Array: diff");
	a(t(["foo"], ["one"]), false, "Array: One value comparision");

	x = { foo: { bar: { mar: {} } } };
	y = { foo: { bar: { mar: {} } } };
	a(t(x, y), true, "Deep");

	a(t({ foo: { bar: { mar: "foo" } } }, { foo: { bar: { mar: {} } } }),
		false, "Deep: false");

	x = { foo: { bar: { mar: {} } } };
	x.rec = { foo: x };

	y = { foo: { bar: { mar: {} } } };
	y.rec = { foo: x };

	a(t(x, y), true, "Object: Infinite Recursion: Same #1");

	x.rec.foo = y;
	a(t(x, y), true, "Object: Infinite Recursion: Same #2");

	x.rec.foo = x;
	y.rec.foo = y;
	a(t(x, y), true, "Object: Infinite Recursion: Same #3");

	y.foo.bar.mar = "raz";
	a(t(x, y), false, "Object: Infinite Recursion: Diff");
};

Version data entries

46 entries across 46 versions & 3 rubygems

Version Path
govuk_publishing_components-18.0.0 node_modules/es5-ext/test/object/is-copy-deep.js
govuk_publishing_components-17.21.0 node_modules/es5-ext/test/object/is-copy-deep.js
govuk_publishing_components-17.20.0 node_modules/es5-ext/test/object/is-copy-deep.js
govuk_publishing_components-17.19.1 node_modules/es5-ext/test/object/is-copy-deep.js
govuk_publishing_components-17.19.0 node_modules/es5-ext/test/object/is-copy-deep.js
govuk_publishing_components-17.18.0 node_modules/es5-ext/test/object/is-copy-deep.js
govuk_publishing_components-17.17.0 node_modules/es5-ext/test/object/is-copy-deep.js
govuk_publishing_components-17.16.0 node_modules/es5-ext/test/object/is-copy-deep.js
govuk_publishing_components-17.15.0 node_modules/es5-ext/test/object/is-copy-deep.js
govuk_publishing_components-17.14.0 node_modules/es5-ext/test/object/is-copy-deep.js
govuk_publishing_components-17.13.0 node_modules/es5-ext/test/object/is-copy-deep.js
govuk_publishing_components-17.12.2 node_modules/es5-ext/test/object/is-copy-deep.js
govuk_publishing_components-17.12.1 node_modules/es5-ext/test/object/is-copy-deep.js
govuk_publishing_components-17.12.0 node_modules/es5-ext/test/object/is-copy-deep.js
govuk_publishing_components-17.11.0 node_modules/es5-ext/test/object/is-copy-deep.js
govuk_publishing_components-17.10.0 node_modules/es5-ext/test/object/is-copy-deep.js
govuk_publishing_components-17.9.0 node_modules/es5-ext/test/object/is-copy-deep.js
govuk_publishing_components-17.8.0 node_modules/es5-ext/test/object/is-copy-deep.js
govuk_publishing_components-17.7.0 node_modules/es5-ext/test/object/is-copy-deep.js
govuk_publishing_components-17.6.1 node_modules/es5-ext/test/object/is-copy-deep.js