{"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"keywords":["equal","is","compare","comparison","equality"],"dist-tags":{"latest":"1.5.5"},"author":{"name":"Jordan Harband"},"description":"Are these two values conceptually equal?","readme":"#is-equal <sup>[![Version Badge][2]][1]</sup>\n\n[![Build Status][3]][4]\n[![dependency status][5]][6]\n[![dev dependency status][7]][8]\n[![License][license-image]][license-url]\n[![Downloads][downloads-image]][downloads-url]\n\n[![npm badge][11]][1]\n\n[![browser support][9]][10]\n\nAre these two values conceptually equal?\n\n## Example\n\n```js\nvar isEqual = require('is-equal');\nvar assert = require('assert');\n\nvar primitives = [true, false, undefined, 42, 'foo'];\nprimitives.forEach(function (primitive) {\n\tassert.equal(isEqual(primitive, primitive), true);\n});\nassert.equal(isEqual(/a/g, /a/g));\nassert.equal(isEqual(/a/g, new RegExp('a', 'g')));\nassert.equal(isEqual({ a: 2 }, { a: 2 }), true);\nassert.equal(isEqual([1, [2, 3], 4], [1, [2, 3], 4]), true);\nvar timestamp = Date.now();\nassert.equal(isEqual(new Date(timestamp), new Date(timestamp)), true);\n```\n\n## Want to know *why* two values are not equal?\nWill return an empty string if `isEqual` would return `true` - otherwise will return a non-empty string that hopefully explains the reasoning.\n\n```\nvar whyNotEqual = require('is-equal/why');\n\nassert.equal(whyNotEqual(1, 1), '');\nassert.equal(\n  whyNotEqual({ a: 1 }, { a: 2 }),\n  'value at key \"a\" differs: numbers are different: 1 !== 2'\n);\n```\n\n## Tests\nSimply clone the repo, `npm install`, and run `npm test`\n\n[1]: https://npmjs.org/package/is-equal\n[2]: http://versionbadg.es/ljharb/is-equal.svg\n[3]: https://travis-ci.org/ljharb/is-equal.svg\n[4]: https://travis-ci.org/ljharb/is-equal\n[5]: https://david-dm.org/ljharb/is-equal.svg\n[6]: https://david-dm.org/ljharb/is-equal\n[7]: https://david-dm.org/ljharb/is-equal/dev-status.svg\n[8]: https://david-dm.org/ljharb/is-equal#info=devDependencies\n[9]: https://ci.testling.com/ljharb/is-equal.png\n[10]: https://ci.testling.com/ljharb/is-equal\n[11]: https://nodei.co/npm/is-equal.png?downloads=true&stars=true\n[license-image]: http://img.shields.io/npm/l/is-equal.svg\n[license-url]: LICENSE\n[downloads-image]: http://img.shields.io/npm/dm/is-equal.svg\n[downloads-url]: http://npm-stat.com/charts.html?package=is-equal\n\n","repository":{"type":"git","url":"git://github.com/ljharb/is-equal.git"},"users":{"nathan7":true,"dwaynecrooks":true,"jacob-beltran":true,"ilia.ivanov":true},"bugs":{"url":"https://github.com/ljharb/is-equal/issues"},"license":"MIT","versions":{"0.0.0":{"name":"is-equal","version":"0.0.0","description":"Are these two values conceptually equal?","author":{"name":"Jordan Harband"},"license":"MIT","main":"index.js","scripts":{"test":"node test.js","coverage":"covert test.js","coverage-quiet":"covert test.js --quiet"},"repository":{"type":"git","url":"git://github.com/ljharb/is-equal.git"},"bugs":{"url":"https://github.com/ljharb/is-equal/issues"},"homepage":"https://github.com/ljharb/is-equal","keywords":["equal","is","compare","comparison","equality"],"dependencies":{},"devDependencies":{"tape":"~2.3.2","covert":"~0.3.0"},"testling":{"files":"test.js","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..12.0","opera/15.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2"]},"engines":{"node":">= 0.4"},"_id":"is-equal@0.0.0","dist":{"shasum":"7a4213ae8e3b156d7b63e15edd1040df648c8be6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/is-equal/-/is-equal-0.0.0.tgz"},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"0.1.0":{"name":"is-equal","version":"0.1.0","description":"Are these two values conceptually equal?","author":{"name":"Jordan Harband"},"license":"MIT","main":"index.js","scripts":{"test":"node test.js","coverage":"covert test.js","coverage-quiet":"covert test.js --quiet"},"repository":{"type":"git","url":"git://github.com/ljharb/is-equal.git"},"bugs":{"url":"https://github.com/ljharb/is-equal/issues"},"homepage":"https://github.com/ljharb/is-equal","keywords":["equal","is","compare","comparison","equality"],"dependencies":{},"devDependencies":{"tape":"~2.11.0","covert":"~0.3.1"},"testling":{"files":"test.js","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..12.0","opera/15.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2"]},"engines":{"node":">= 0.4"},"_id":"is-equal@0.1.0","dist":{"shasum":"fcf6e0fdc9dca9a4d4768bae73b8cdaa5b3fab6e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/is-equal/-/is-equal-0.1.0.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"1.0.0":{"name":"is-equal","version":"1.0.0","description":"Are these two values conceptually equal?","author":{"name":"Jordan Harband"},"license":"MIT","main":"index.js","scripts":{"test":"node test.js","coverage":"covert test.js","coverage-quiet":"covert test.js --quiet"},"repository":{"type":"git","url":"git://github.com/ljharb/is-equal.git"},"bugs":{"url":"https://github.com/ljharb/is-equal/issues"},"homepage":"https://github.com/ljharb/is-equal","keywords":["equal","is","compare","comparison","equality"],"dependencies":{},"devDependencies":{"tape":"~2.14.0","covert":"~0.4.0"},"testling":{"files":"test.js","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..12.0","opera/15.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2"]},"engines":{"node":">= 0.4"},"gitHead":"89e5ca27a8b12a3f78cd6714937a3b287fed2129","_id":"is-equal@1.0.0","_shasum":"88b45f7c9e53644827abc25d502617c0d5adff08","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"dist":{"shasum":"88b45f7c9e53644827abc25d502617c0d5adff08","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/is-equal/-/is-equal-1.0.0.tgz"},"directories":{}},"1.1.0":{"name":"is-equal","version":"1.1.0","description":"Are these two values conceptually equal?","author":{"name":"Jordan Harband"},"license":"MIT","main":"index.js","scripts":{"test":"npm run lint && node --harmony test.js","coverage":"covert test.js","coverage-quiet":"covert test.js --quiet","lint":"jscs *.js"},"repository":{"type":"git","url":"git://github.com/ljharb/is-equal.git"},"bugs":{"url":"https://github.com/ljharb/is-equal/issues"},"homepage":"https://github.com/ljharb/is-equal","keywords":["equal","is","compare","comparison","equality"],"dependencies":{"is-arrow-function":"~2.0.0","is-generator-function":"~1.0.0"},"devDependencies":{"tape":"~3.0.3","covert":"1.0.0","jscs":"~1.8.1","foreach":"~2.0.5","make-arrow-function":"~1.0.0","make-generator-function":"~1.0.0"},"testling":{"files":"test.js","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..12.0","opera/15.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2"]},"engines":{"node":">= 0.4"},"gitHead":"edec509e8392e3b6cd128b432507e30d5ae15a82","_id":"is-equal@1.1.0","_shasum":"c38c36bf9fdff3c854b68f968bde5a2844031bcf","_from":".","_npmVersion":"2.1.12","_nodeVersion":"0.11.14","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"dist":{"shasum":"c38c36bf9fdff3c854b68f968bde5a2844031bcf","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/is-equal/-/is-equal-1.1.0.tgz"},"directories":{}},"1.1.1":{"name":"is-equal","version":"1.1.1","description":"Are these two values conceptually equal?","author":{"name":"Jordan Harband"},"license":"MIT","main":"index.js","scripts":{"test":"npm run lint && node --harmony test.js","coverage":"covert test.js","coverage-quiet":"covert test.js --quiet","lint":"jscs *.js"},"repository":{"type":"git","url":"git://github.com/ljharb/is-equal.git"},"bugs":{"url":"https://github.com/ljharb/is-equal/issues"},"homepage":"https://github.com/ljharb/is-equal","keywords":["equal","is","compare","comparison","equality"],"dependencies":{"is-arrow-function":"~2.0.1","is-generator-function":"~1.0.2"},"devDependencies":{"tape":"~3.4.0","covert":"1.0.0","jscs":"~1.10.0","foreach":"~2.0.5","make-arrow-function":"~1.0.0","make-generator-function":"~1.0.0"},"testling":{"files":"test.js","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..12.0","opera/15.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2"]},"engines":{"node":">= 0.4"},"gitHead":"7ff4bea77bf1c6b7b7d703f6118cedaa2abf5e48","_id":"is-equal@1.1.1","_shasum":"b84bdf2d1978eb8a9b826ce26f4daad7b4a625b9","_from":".","_npmVersion":"2.2.0","_nodeVersion":"1.0.3","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"dist":{"shasum":"b84bdf2d1978eb8a9b826ce26f4daad7b4a625b9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/is-equal/-/is-equal-1.1.1.tgz"},"directories":{}},"1.2.0":{"name":"is-equal","version":"1.2.0","description":"Are these two values conceptually equal?","author":{"name":"Jordan Harband"},"license":"MIT","main":"index.js","scripts":{"test":"npm run lint && node --harmony test.js","coverage":"covert test.js","coverage-quiet":"covert test.js --quiet","lint":"jscs *.js"},"repository":{"type":"git","url":"git://github.com/ljharb/is-equal.git"},"bugs":{"url":"https://github.com/ljharb/is-equal/issues"},"homepage":"https://github.com/ljharb/is-equal","keywords":["equal","is","compare","comparison","equality"],"dependencies":{"is-arrow-function":"~2.0.1","is-date-object":"~1.0.0","is-generator-function":"~1.0.2","is-number-object":"~1.0.0","is-regex":"~1.0.1"},"devDependencies":{"tape":"~3.4.0","covert":"1.0.0","jscs":"~1.10.0","foreach":"~2.0.5","make-arrow-function":"~1.0.0","make-generator-function":"~1.0.0","semver":"~4.2.0"},"testling":{"files":"test.js","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..12.0","opera/15.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2"]},"engines":{"node":">= 0.4"},"gitHead":"3b429583659ffc605956ebe567fe4ffc6735304b","_id":"is-equal@1.2.0","_shasum":"947e98aaaa86cf7a5146fdcd9ef16243a594b1e5","_from":".","_npmVersion":"2.3.0","_nodeVersion":"1.0.4","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"dist":{"shasum":"947e98aaaa86cf7a5146fdcd9ef16243a594b1e5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/is-equal/-/is-equal-1.2.0.tgz"},"directories":{}},"1.2.3":{"name":"is-equal","version":"1.2.3","description":"Are these two values conceptually equal?","author":{"name":"Jordan Harband"},"license":"MIT","main":"index.js","scripts":{"test":"npm run lint && node --harmony test.js","coverage":"covert test.js","coverage-quiet":"covert test.js --quiet","lint":"jscs *.js"},"repository":{"type":"git","url":"git://github.com/ljharb/is-equal.git"},"bugs":{"url":"https://github.com/ljharb/is-equal/issues"},"homepage":"https://github.com/ljharb/is-equal","keywords":["equal","is","compare","comparison","equality"],"dependencies":{"is-arrow-function":"~2.0.2","is-callable":"~1.0.4","is-date-object":"~1.0.0","is-generator-function":"~1.0.3","is-number-object":"~1.0.3","is-regex":"~1.0.3","is-string":"~1.0.4"},"devDependencies":{"tape":"~3.5.0","covert":"1.0.0","jscs":"~1.11.0","foreach":"~2.0.5","make-arrow-function":"~1.0.0","make-generator-function":"~1.0.0","semver":"~4.2.0"},"testling":{"files":"test.js","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..12.0","opera/15.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2"]},"engines":{"node":">= 0.4"},"gitHead":"bdb1d3543101c6a46c5c63a8cecea4a4bf119b4b","_id":"is-equal@1.2.3","_shasum":"d04db7c8aeb0ea272855eac464d1c5ff82ad8ad4","_from":".","_npmVersion":"2.4.1","_nodeVersion":"1.1.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"dist":{"shasum":"d04db7c8aeb0ea272855eac464d1c5ff82ad8ad4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/is-equal/-/is-equal-1.2.3.tgz"},"directories":{}},"1.2.4":{"name":"is-equal","version":"1.2.4","description":"Are these two values conceptually equal?","author":{"name":"Jordan Harband"},"license":"MIT","main":"index.js","scripts":{"test":"npm run lint && node --es-staging test.js && npm run security","coverage":"covert test.js","coverage-quiet":"covert test.js --quiet","lint":"npm run jscs && npm run eslint","jscs":"jscs *.js","eslint":"eslint *.js","security":"nsp package"},"repository":{"type":"git","url":"git://github.com/ljharb/is-equal.git"},"bugs":{"url":"https://github.com/ljharb/is-equal/issues"},"homepage":"https://github.com/ljharb/is-equal","keywords":["equal","is","compare","comparison","equality"],"dependencies":{"is-arrow-function":"^2.0.3","is-boolean-object":"^1.0.0","is-callable":"^1.0.4","is-date-object":"^1.0.1","is-generator-function":"^1.0.3","is-number-object":"^1.0.3","is-regex":"^1.0.3","is-string":"^1.0.4","is-symbol":"^1.0.1"},"devDependencies":{"tape":"^4.2.0","covert":"^1.1.0","jscs":"^2.1.1","foreach":"^2.0.5","make-arrow-function":"^1.1.0","make-generator-function":"^1.1.0","semver":"^5.0.3","eslint":"^1.5.1","@ljharb/eslint-config":"^1.2.0","nsp":"^1.1.0","replace":"^0.3.0"},"testling":{"files":"test.js","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..12.0","opera/15.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2"]},"engines":{"node":">= 0.4"},"gitHead":"d3b0a416fb062c9c43c570e90e4bdab413203cf5","_id":"is-equal@1.2.4","_shasum":"8ed60d2bae6d6a636954ac5be6109362f6ea5add","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"8ed60d2bae6d6a636954ac5be6109362f6ea5add","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/is-equal/-/is-equal-1.2.4.tgz"},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"1.3.0":{"name":"is-equal","version":"1.3.0","description":"Are these two values conceptually equal?","author":{"name":"Jordan Harband"},"license":"MIT","main":"index.js","scripts":{"test":"npm run lint && npm run tests-only && npm run security","tests-only":"node test.js","coverage":"covert test.js","coverage-quiet":"covert test.js --quiet","lint":"npm run jscs && npm run eslint","jscs":"jscs *.js","eslint":"eslint *.js","security":"nsp check"},"repository":{"type":"git","url":"git://github.com/ljharb/is-equal.git"},"bugs":{"url":"https://github.com/ljharb/is-equal/issues"},"homepage":"https://github.com/ljharb/is-equal","keywords":["equal","is","compare","comparison","equality"],"dependencies":{"is-arrow-function":"^2.0.3","is-boolean-object":"^1.0.0","is-callable":"^1.1.1","is-date-object":"^1.0.1","is-generator-function":"^1.0.3","is-number-object":"^1.0.3","is-regex":"^1.0.3","is-string":"^1.0.4","is-symbol":"^1.0.1","object.entries":"^1.0.3"},"devDependencies":{"tape":"^4.2.2","covert":"^1.1.0","jscs":"^2.7.0","foreach":"^2.0.5","object.entries":"^1.0.3","make-arrow-function":"^1.1.0","make-generator-function":"^1.1.0","semver":"^5.1.0","eslint":"^1.10.3","@ljharb/eslint-config":"^1.6.0","nsp":"^2.1.0","replace":"^0.3.0","es6-shim":"^0.33.13"},"testling":{"files":"test.js","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..12.0","opera/15.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2"]},"engines":{"node":">= 0.4"},"gitHead":"b137ba4c903bc0ce41df1221320e15fca5bbc1ef","_id":"is-equal@1.3.0","_shasum":"96ef7d2b6213482b05e8aa61e9b7951aea6c8dbe","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"96ef7d2b6213482b05e8aa61e9b7951aea6c8dbe","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/is-equal/-/is-equal-1.3.0.tgz"},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"1.3.1":{"name":"is-equal","version":"1.3.1","description":"Are these two values conceptually equal?","author":{"name":"Jordan Harband"},"license":"MIT","main":"index.js","scripts":{"test":"npm run lint && npm run tests-only && npm run security","tests-only":"npm run test:native && npm run test:shimmed","test:native":"node test/native.js","test:shimmed":"node test/shimmed.js","coverage":"covert test/native.js","coverage-quiet":"covert test/native.js --quiet","lint":"npm run jscs && npm run eslint","jscs":"jscs *.js test/*.js","eslint":"eslint *.js test/*.js","security":"nsp check"},"repository":{"type":"git","url":"git://github.com/ljharb/is-equal.git"},"bugs":{"url":"https://github.com/ljharb/is-equal/issues"},"homepage":"https://github.com/ljharb/is-equal","keywords":["equal","is","compare","comparison","equality"],"dependencies":{"is-arrow-function":"^2.0.3","is-boolean-object":"^1.0.0","is-callable":"^1.1.1","is-date-object":"^1.0.1","is-generator-function":"^1.0.3","is-number-object":"^1.0.3","is-regex":"^1.0.3","is-string":"^1.0.4","is-symbol":"^1.0.1","object.entries":"^1.0.3"},"devDependencies":{"tape":"^4.2.2","covert":"^1.1.0","jscs":"^2.7.0","foreach":"^2.0.5","object.entries":"^1.0.3","make-arrow-function":"^1.1.0","make-generator-function":"^1.1.0","semver":"^5.1.0","eslint":"^1.10.3","@ljharb/eslint-config":"^1.6.0","nsp":"^2.1.0","replace":"^0.3.0","es6-shim":"^0.33.13"},"testling":{"files":"test/native.js","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..12.0","opera/15.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2"]},"engines":{"node":">= 0.4"},"gitHead":"a33c88f7de889596b2684e108bf08d8e2d86a2b4","_id":"is-equal@1.3.1","_shasum":"01f620e165b20fe8ffddfb67de69df770cc36ddb","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"01f620e165b20fe8ffddfb67de69df770cc36ddb","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/is-equal/-/is-equal-1.3.1.tgz"},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"1.4.0":{"name":"is-equal","version":"1.4.0","description":"Are these two values conceptually equal?","author":{"name":"Jordan Harband"},"license":"MIT","main":"index.js","scripts":{"test":"npm run lint && npm run tests-only && npm run security","tests-only":"npm run test:native && npm run test:shimmed","test:native":"node test/native.js","test:shimmed":"node test/shimmed.js","coverage":"covert test/native.js","coverage-quiet":"covert test/native.js --quiet","lint":"npm run jscs && npm run eslint","jscs":"jscs *.js test/*.js","eslint":"eslint *.js test/*.js","security":"nsp check"},"repository":{"type":"git","url":"git://github.com/ljharb/is-equal.git"},"bugs":{"url":"https://github.com/ljharb/is-equal/issues"},"homepage":"https://github.com/ljharb/is-equal","keywords":["equal","is","compare","comparison","equality"],"dependencies":{"has":"^1.0.1","is-arrow-function":"^2.0.3","is-boolean-object":"^1.0.0","is-callable":"^1.1.1","is-date-object":"^1.0.1","is-generator-function":"^1.0.3","is-number-object":"^1.0.3","is-regex":"^1.0.3","is-string":"^1.0.4","is-symbol":"^1.0.1","object.entries":"^1.0.3"},"devDependencies":{"tape":"^4.2.2","covert":"^1.1.0","jscs":"^2.7.0","foreach":"^2.0.5","object.entries":"^1.0.3","make-arrow-function":"^1.1.0","make-generator-function":"^1.1.0","semver":"^5.1.0","eslint":"^1.10.3","@ljharb/eslint-config":"^1.6.0","nsp":"^2.1.0","replace":"^0.3.0","es6-shim":"^0.33.13"},"testling":{"files":"test/native.js","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..12.0","opera/15.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2"]},"engines":{"node":">= 0.4"},"gitHead":"d42b4e8d7bf60064b374c85ec76c261d4dc4053f","_id":"is-equal@1.4.0","_shasum":"406f1bc374dfb276f6ee1929fd7073949f54fc15","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"406f1bc374dfb276f6ee1929fd7073949f54fc15","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/is-equal/-/is-equal-1.4.0.tgz"},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"1.4.1":{"name":"is-equal","version":"1.4.1","description":"Are these two values conceptually equal?","author":{"name":"Jordan Harband"},"license":"MIT","main":"index.js","scripts":{"test":"npm run lint && npm run tests-only && npm run security","tests-only":"npm run test:native && npm run test:shimmed && npm run test:corejs","test:native":"node test/native.js","test:shimmed":"node test/shimmed.js","test:corejs":"node test/corejs.js","coverage":"covert test/native.js","coverage-quiet":"covert test/native.js --quiet","lint":"npm run jscs && npm run eslint","jscs":"jscs *.js test/*.js","eslint":"eslint *.js test/*.js","security":"nsp check"},"repository":{"type":"git","url":"git://github.com/ljharb/is-equal.git"},"bugs":{"url":"https://github.com/ljharb/is-equal/issues"},"homepage":"https://github.com/ljharb/is-equal","keywords":["equal","is","compare","comparison","equality"],"dependencies":{"has":"^1.0.1","is-arrow-function":"^2.0.3","is-boolean-object":"^1.0.0","is-callable":"^1.1.1","is-date-object":"^1.0.1","is-generator-function":"^1.0.3","is-number-object":"^1.0.3","is-regex":"^1.0.3","is-string":"^1.0.4","is-symbol":"^1.0.1","object.entries":"^1.0.3"},"devDependencies":{"tape":"^4.2.2","covert":"^1.1.0","jscs":"^2.7.0","foreach":"^2.0.5","object.entries":"^1.0.3","make-arrow-function":"^1.1.0","make-generator-function":"^1.1.0","semver":"^5.1.0","eslint":"^1.10.3","@ljharb/eslint-config":"^1.6.0","nsp":"^2.1.0","replace":"^0.3.0","es6-shim":"^0.33.13","core-js":"^1.2.6"},"testling":{"files":"test/native.js","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..12.0","opera/15.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2"]},"engines":{"node":">= 0.4"},"gitHead":"07cda3e0488bd24261c4b3764ced7957971845fa","_id":"is-equal@1.4.1","_shasum":"2ede7d4eb80d24ff802095413ceb1f46a0504016","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"2ede7d4eb80d24ff802095413ceb1f46a0504016","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/is-equal/-/is-equal-1.4.1.tgz"},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"1.4.2":{"name":"is-equal","version":"1.4.2","description":"Are these two values conceptually equal?","author":{"name":"Jordan Harband"},"license":"MIT","main":"index.js","scripts":{"test":"npm run lint && npm run tests-only && npm run security","tests-only":"npm run test:native && npm run test:shimmed && npm run test:corejs","test:native":"node test/native.js","test:shimmed":"node test/shimmed.js","test:corejs":"node test/corejs.js","coverage":"covert test/native.js","coverage-quiet":"covert test/native.js --quiet","lint":"npm run jscs && npm run eslint","jscs":"jscs *.js test/*.js","eslint":"eslint *.js test/*.js","security":"nsp check"},"repository":{"type":"git","url":"git://github.com/ljharb/is-equal.git"},"bugs":{"url":"https://github.com/ljharb/is-equal/issues"},"homepage":"https://github.com/ljharb/is-equal","keywords":["equal","is","compare","comparison","equality"],"dependencies":{"has":"^1.0.1","is-arrow-function":"^2.0.3","is-boolean-object":"^1.0.0","is-callable":"^1.1.1","is-date-object":"^1.0.1","is-generator-function":"^1.0.3","is-number-object":"^1.0.3","is-regex":"^1.0.3","is-string":"^1.0.4","is-symbol":"^1.0.1","object.entries":"^1.0.3"},"devDependencies":{"tape":"^4.2.2","covert":"^1.1.0","jscs":"^2.7.0","foreach":"^2.0.5","object.entries":"^1.0.3","make-arrow-function":"^1.1.0","make-generator-function":"^1.1.0","semver":"^5.1.0","eslint":"^1.10.3","@ljharb/eslint-config":"^1.6.0","nsp":"^2.1.0","replace":"^0.3.0","es6-shim":"^0.33.13","core-js":"^1.2.6"},"testling":{"files":"test/native.js","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..12.0","opera/15.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2"]},"engines":{"node":">= 0.4"},"gitHead":"3fc36c02fbd3ea43bf3114b506bfded50ae19db2","_id":"is-equal@1.4.2","_shasum":"1e8debc1fe59c567c0ca38a87b2e3b27992889d7","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"1e8debc1fe59c567c0ca38a87b2e3b27992889d7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/is-equal/-/is-equal-1.4.2.tgz"},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"1.5.0":{"name":"is-equal","version":"1.5.0","description":"Are these two values conceptually equal?","author":{"name":"Jordan Harband"},"license":"MIT","main":"index.js","scripts":{"test":"npm run lint && npm run tests-only && npm run security","tests-only":"npm run test:native && npm run test:why && npm run test:shimmed && npm run test:corejs","test:native":"node test/native","test:why":"node test/why","test:shimmed":"node test/shimmed","test:corejs":"node test/corejs","coverage":"covert test/native test/why","coverage-quiet":"covert test/native.js --quiet","lint":"npm run jscs && npm run eslint","jscs":"jscs *.js test/*.js","eslint":"eslint *.js test/*.js","security":"nsp check"},"repository":{"type":"git","url":"git://github.com/ljharb/is-equal.git"},"bugs":{"url":"https://github.com/ljharb/is-equal/issues"},"homepage":"https://github.com/ljharb/is-equal","keywords":["equal","is","compare","comparison","equality"],"dependencies":{"has":"^1.0.1","is-arrow-function":"^2.0.3","is-boolean-object":"^1.0.0","is-callable":"^1.1.2","is-date-object":"^1.0.1","is-generator-function":"^1.0.3","is-number-object":"^1.0.3","is-regex":"^1.0.3","is-string":"^1.0.4","is-symbol":"^1.0.1","object.entries":"^1.0.3"},"devDependencies":{"tape":"^4.4.0","covert":"^1.1.0","jscs":"^2.10.1","foreach":"^2.0.5","object.entries":"^1.0.3","make-arrow-function":"^1.1.0","make-generator-function":"^1.1.0","semver":"^5.1.0","eslint":"^2.1.0","@ljharb/eslint-config":"^2.1.1","nsp":"^2.2.0","replace":"^0.3.0","es6-shim":"^0.34.4","core-js":"^2.1.0"},"testling":{"files":"test/native.js","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..12.0","opera/15.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2"]},"engines":{"node":">= 0.4"},"gitHead":"9d9d0e8b3d743a73fa707afb0a41e4f9eada9de5","_id":"is-equal@1.5.0","_shasum":"e84c2177b862a68ea6b62f6791d98b2dc76fe4a7","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.6.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"e84c2177b862a68ea6b62f6791d98b2dc76fe4a7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/is-equal/-/is-equal-1.5.0.tgz"},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/is-equal-1.5.0.tgz_1455611486721_0.6371672542300075"},"directories":{}},"1.5.1":{"name":"is-equal","version":"1.5.1","description":"Are these two values conceptually equal?","author":{"name":"Jordan Harband"},"license":"MIT","main":"index.js","scripts":{"test":"npm run lint && npm run tests-only && npm run security","tests-only":"npm run test:native && npm run test:why && npm run test:shimmed && npm run test:corejs","test:native":"node test/native","test:why":"node test/why","test:shimmed":"node test/shimmed","test:corejs":"node test/corejs","coverage":"covert test/native test/why","coverage-quiet":"covert test/native.js --quiet","lint":"npm run jscs && npm run eslint","jscs":"jscs *.js test/*.js","eslint":"eslint *.js test/*.js","security":"nsp check"},"repository":{"type":"git","url":"git://github.com/ljharb/is-equal.git"},"bugs":{"url":"https://github.com/ljharb/is-equal/issues"},"homepage":"https://github.com/ljharb/is-equal","keywords":["equal","is","compare","comparison","equality"],"dependencies":{"has":"^1.0.1","is-arrow-function":"^2.0.3","is-boolean-object":"^1.0.0","is-callable":"^1.1.2","is-date-object":"^1.0.1","is-generator-function":"^1.0.3","is-number-object":"^1.0.3","is-regex":"^1.0.3","is-string":"^1.0.4","is-symbol":"^1.0.1","object.entries":"^1.0.3"},"devDependencies":{"tape":"^4.4.0","covert":"^1.1.0","jscs":"^2.10.1","foreach":"^2.0.5","object.entries":"^1.0.3","make-arrow-function":"^1.1.0","make-generator-function":"^1.1.0","semver":"^5.1.0","eslint":"^2.1.0","@ljharb/eslint-config":"^2.1.1","nsp":"^2.2.0","replace":"^0.3.0","es6-shim":"^0.34.4","core-js":"^2.1.0"},"testling":{"files":"test/native.js","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..12.0","opera/15.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2"]},"engines":{"node":">= 0.4"},"gitHead":"9c58b00080fb44d6643058871ad9cb6afd95df14","_id":"is-equal@1.5.1","_shasum":"1d73b78d5701bb5e716bb173ab367d1cd0a9a1cf","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.6.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"1d73b78d5701bb5e716bb173ab367d1cd0a9a1cf","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/is-equal/-/is-equal-1.5.1.tgz"},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/is-equal-1.5.1.tgz_1456179111132_0.23334449669346213"},"directories":{}},"1.5.2":{"name":"is-equal","version":"1.5.2","description":"Are these two values conceptually equal?","author":{"name":"Jordan Harband"},"license":"MIT","main":"index.js","scripts":{"pretest":"npm run --silent lint","test":"npm run --silent tests-only","posttest":"npm run --silent security","tests-only":"npm run --silent test:native && npm run --silent test:why && npm run --silent test:shimmed && npm run --silent test:corejs","test:native":"node test/native","test:why":"node test/why","test:shimmed":"node test/shimmed","test:corejs":"node test/corejs","coverage":"covert test/native test/why","coverage-quiet":"covert test/native.js --quiet","lint":"npm run --silent jscs && npm run --silent eslint","jscs":"jscs *.js test/*.js","eslint":"eslint *.js test/*.js","security":"nsp check"},"repository":{"type":"git","url":"git://github.com/ljharb/is-equal.git"},"bugs":{"url":"https://github.com/ljharb/is-equal/issues"},"homepage":"https://github.com/ljharb/is-equal","keywords":["equal","is","compare","comparison","equality"],"dependencies":{"has":"^1.0.1","is-arrow-function":"^2.0.3","is-boolean-object":"^1.0.0","is-callable":"^1.1.3","is-date-object":"^1.0.1","is-generator-function":"^1.0.3","is-number-object":"^1.0.3","is-regex":"^1.0.3","is-string":"^1.0.4","is-symbol":"^1.0.1","object.entries":"^1.0.3"},"devDependencies":{"tape":"^4.5.1","covert":"^1.1.0","jscs":"^3.0.3","foreach":"^2.0.5","object.entries":"^1.0.3","make-arrow-function":"^1.1.0","make-generator-function":"^1.1.0","semver":"^5.1.0","eslint":"^2.10.2","@ljharb/eslint-config":"^4.0.1","nsp":"^2.4.0","replace":"^0.3.0","es6-shim":"^0.35.1","core-js":"^2.4.0"},"testling":{"files":"test/native.js","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..12.0","opera/15.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2"]},"engines":{"node":">= 0.4"},"gitHead":"47fd00997324e05e388d3809014562cb82a7db18","_id":"is-equal@1.5.2","_shasum":"5a95f4188cc730bb627c9c4dd3c34d377b597ca7","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"5a95f4188cc730bb627c9c4dd3c34d377b597ca7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/is-equal/-/is-equal-1.5.2.tgz"},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/is-equal-1.5.2.tgz_1463613994807_0.27731261937879026"},"directories":{}},"1.5.3":{"name":"is-equal","version":"1.5.3","description":"Are these two values conceptually equal?","author":{"name":"Jordan Harband"},"license":"MIT","main":"index.js","scripts":{"pretest":"npm run --silent lint","test":"npm run --silent tests-only","posttest":"npm run --silent security","tests-only":"npm run --silent test:native && npm run --silent test:why && npm run --silent test:shimmed && npm run --silent test:corejs","test:native":"node test/native","test:why":"node test/why","test:shimmed":"node test/shimmed","test:corejs":"node test/corejs","coverage":"covert test/native test/why","coverage-quiet":"covert test/native.js --quiet","lint":"npm run --silent jscs && npm run --silent eslint","jscs":"jscs *.js test/*.js","eslint":"eslint *.js test/*.js","security":"nsp check"},"repository":{"type":"git","url":"git://github.com/ljharb/is-equal.git"},"bugs":{"url":"https://github.com/ljharb/is-equal/issues"},"homepage":"https://github.com/ljharb/is-equal","keywords":["equal","is","compare","comparison","equality"],"dependencies":{"has":"^1.0.1","is-arrow-function":"^2.0.3","is-boolean-object":"^1.0.0","is-callable":"^1.1.3","is-date-object":"^1.0.1","is-generator-function":"^1.0.3","is-number-object":"^1.0.3","is-regex":"^1.0.3","is-string":"^1.0.4","is-symbol":"^1.0.1","object.entries":"^1.0.3"},"devDependencies":{"tape":"^4.5.1","covert":"^1.1.0","jscs":"^3.0.3","foreach":"^2.0.5","object.entries":"^1.0.3","make-arrow-function":"^1.1.0","make-generator-function":"^1.1.0","semver":"^5.1.0","eslint":"^2.10.2","@ljharb/eslint-config":"^4.0.1","nsp":"^2.4.0","replace":"^0.3.0","es6-shim":"^0.35.1","core-js":"^2.4.0"},"testling":{"files":"test/native.js","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..12.0","opera/15.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2"]},"engines":{"node":">= 0.4"},"gitHead":"3e5bde705daaf5fe95070084280cdb31ba73d75d","_id":"is-equal@1.5.3","_shasum":"05b7fa3a1122cbc71c1ef41ce0142d5532013b29","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"05b7fa3a1122cbc71c1ef41ce0142d5532013b29","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/is-equal/-/is-equal-1.5.3.tgz"},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/is-equal-1.5.3.tgz_1464082385848_0.6463906113058329"},"directories":{}},"1.5.4":{"name":"is-equal","version":"1.5.4","description":"Are these two values conceptually equal?","author":{"name":"Jordan Harband"},"license":"MIT","main":"index.js","scripts":{"pretest":"npm run --silent lint","test":"npm run --silent tests-only","posttest":"npm run --silent security","tests-only":"npm run --silent test:native && npm run --silent test:why && npm run --silent test:shimmed && npm run --silent test:corejs","test:native":"node test/native","test:why":"node test/why","test:shimmed":"node test/shimmed","test:corejs":"node test/corejs","coverage":"covert test/native test/why","coverage-quiet":"covert test/native.js --quiet","lint":"npm run --silent jscs && npm run --silent eslint","jscs":"jscs *.js test/*.js","eslint":"eslint *.js test/*.js","security":"nsp check"},"repository":{"type":"git","url":"git://github.com/ljharb/is-equal.git"},"bugs":{"url":"https://github.com/ljharb/is-equal/issues"},"homepage":"https://github.com/ljharb/is-equal","keywords":["equal","is","compare","comparison","equality"],"dependencies":{"has":"^1.0.1","is-arrow-function":"^2.0.3","is-boolean-object":"^1.0.0","is-callable":"^1.1.3","is-date-object":"^1.0.1","is-generator-function":"^1.0.6","is-number-object":"^1.0.3","is-regex":"^1.0.3","is-string":"^1.0.4","is-symbol":"^1.0.1","object.entries":"^1.0.4"},"devDependencies":{"tape":"^4.6.3","covert":"^1.1.0","jscs":"^3.0.7","foreach":"^2.0.5","make-arrow-function":"^1.1.0","make-generator-function":"^1.1.0","semver":"^5.3.0","eslint":"^3.14.1","@ljharb/eslint-config":"^10.0.0","nsp":"^2.6.2","replace":"^0.3.0","es6-shim":"^0.35.3","core-js":"^2.4.1"},"testling":{"files":"test/native.js","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..12.0","opera/15.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2"]},"engines":{"node":">= 0.4"},"gitHead":"84055f66a7e41619fa9315ab0ed978c6e5e5d19e","_id":"is-equal@1.5.4","_shasum":"053b91947d83d3924e9182b692b55773e7bec72b","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"053b91947d83d3924e9182b692b55773e7bec72b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/is-equal/-/is-equal-1.5.4.tgz"},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/is-equal-1.5.4.tgz_1485447269819_0.4085745741613209"},"directories":{}},"1.5.5":{"name":"is-equal","version":"1.5.5","description":"Are these two values conceptually equal?","author":{"name":"Jordan Harband"},"license":"MIT","main":"index.js","scripts":{"pretest":"npm run --silent lint","test":"npm run --silent tests-only","posttest":"npm run --silent security","tests-only":"npm run --silent test:native && npm run --silent test:why && npm run --silent test:shimmed && npm run --silent test:corejs","test:native":"node test/native","test:why":"node test/why","test:shimmed":"node test/shimmed","test:corejs":"node test/corejs","coverage":"covert test/native test/why","coverage-quiet":"covert test/native.js --quiet","lint":"npm run --silent jscs && npm run --silent eslint","jscs":"jscs *.js test/*.js","eslint":"eslint *.js test/*.js","security":"nsp check"},"repository":{"type":"git","url":"git://github.com/ljharb/is-equal.git"},"bugs":{"url":"https://github.com/ljharb/is-equal/issues"},"homepage":"https://github.com/ljharb/is-equal","keywords":["equal","is","compare","comparison","equality"],"dependencies":{"has":"^1.0.1","is-arrow-function":"^2.0.3","is-boolean-object":"^1.0.0","is-callable":"^1.1.3","is-date-object":"^1.0.1","is-generator-function":"^1.0.6","is-number-object":"^1.0.3","is-regex":"^1.0.3","is-string":"^1.0.4","is-symbol":"^1.0.1","object.entries":"^1.0.4"},"devDependencies":{"tape":"^4.6.3","covert":"^1.1.0","jscs":"^3.0.7","foreach":"^2.0.5","make-arrow-function":"^1.1.0","make-generator-function":"^1.1.0","semver":"^5.3.0","eslint":"^3.15.0","@ljharb/eslint-config":"^11.0.0","nsp":"^2.6.2","replace":"^0.3.0","es6-shim":"^0.35.3","core-js":"^2.4.1"},"testling":{"files":"test/native.js","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..12.0","opera/15.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2"]},"engines":{"node":">= 0.4"},"gitHead":"b436b0414eda4dcbb47e1a52749b4164dba49d33","_id":"is-equal@1.5.5","_shasum":"5e85f1957e052883247feb386965a3bba15fbb3d","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.5.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"5e85f1957e052883247feb386965a3bba15fbb3d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/is-equal/-/is-equal-1.5.5.tgz"},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/is-equal-1.5.5.tgz_1486366194498_0.47851912304759026"},"directories":{}}},"name":"is-equal","time":{"modified":"2017-03-22T21:56:56.124Z","created":"2014-01-20T06:47:51.697Z","0.0.0":"2014-01-20T06:47:51.697Z","0.1.0":"2014-03-23T21:03:58.924Z","1.0.0":"2014-08-08T19:47:04.246Z","1.1.0":"2014-12-15T09:38:01.242Z","1.1.1":"2015-01-20T08:26:54.063Z","1.2.0":"2015-01-29T00:24:58.873Z","1.2.3":"2015-02-06T23:55:46.144Z","1.2.4":"2015-09-27T17:39:16.538Z","1.3.0":"2015-12-10T08:29:57.378Z","1.3.1":"2015-12-10T23:46:30.531Z","1.4.0":"2015-12-11T01:08:55.570Z","1.4.1":"2015-12-16T07:43:48.128Z","1.4.2":"2015-12-16T19:43:20.355Z","1.5.0":"2016-02-16T08:31:28.863Z","1.5.1":"2016-02-22T22:11:55.009Z","1.5.2":"2016-05-18T23:26:37.899Z","1.5.3":"2016-05-24T09:33:06.966Z","1.5.4":"2017-01-26T16:14:31.765Z","1.5.5":"2017-02-06T07:29:56.400Z"},"readmeFilename":"README.md","homepage":"https://github.com/ljharb/is-equal"}