{
  "manifest": {
    "name": "object-is",
    "version": "1.1.6",
    "description": "ES2015-compliant shim for Object.is - differentiates between -0 and +0",
    "author": {
      "name": "Jordan Harband"
    },
    "funding": {
      "url": "https://github.com/sponsors/ljharb"
    },
    "license": "MIT",
    "main": "index.js",
    "scripts": {
      "prepack": "npmignore --auto --commentLines=autogenerated",
      "prepublishOnly": "safe-publish-latest",
      "prepublish": "not-in-publish || npm run prepublishOnly",
      "pretest": "npm run lint",
      "tests-only": "nyc tape 'test/**/*.js'",
      "test": "npm run tests-only",
      "posttest": "aud --production",
      "lint": "eslint --ext=js,mjs .",
      "postlint": "es-shim-api --bound",
      "version": "auto-changelog && git add CHANGELOG.md",
      "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
    },
    "repository": {
      "type": "git",
      "url": "git://github.com/es-shims/object-is.git"
    },
    "bugs": {
      "url": "https://github.com/es-shims/object-is/issues"
    },
    "homepage": "https://github.com/es-shims/object-is",
    "keywords": [
      "is",
      "Object.is",
      "equality",
      "sameValueZero",
      "ES6",
      "ES2015",
      "shim",
      "polyfill",
      "es-shim API"
    ],
    "dependencies": {
      "call-bind": "^1.0.7",
      "define-properties": "^1.2.1"
    },
    "devDependencies": {
      "@es-shims/api": "^2.4.2",
      "@ljharb/eslint-config": "^21.1.0",
      "aud": "^2.0.4",
      "auto-changelog": "^2.4.0",
      "eslint": "=8.8.0",
      "functions-have-names": "^1.2.3",
      "has-symbols": "^1.0.3",
      "in-publish": "^2.0.1",
      "npmignore": "^0.3.1",
      "nyc": "^10.3.2",
      "safe-publish-latest": "^2.0.0",
      "tape": "^5.7.5"
    },
    "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"
    },
    "auto-changelog": {
      "output": "CHANGELOG.md",
      "template": "keepachangelog",
      "unreleased": false,
      "commitLimit": false,
      "backfillLimit": false,
      "hideCredit": true
    },
    "publishConfig": {
      "ignore": [
        ".github/workflows"
      ]
    },
    "_registry": "npm",
    "_loc": "/homez.1033/heliovt/.cache/yarn/v6/npm-object-is-1.1.6-1a6a53aed2dd8f7e6775ff870bea58545956ab07-integrity/node_modules/object-is/package.json",
    "readmeFilename": "README.md",
    "readme": "# object-is <sup>[![Version Badge][npm-version-svg]][package-url]</sup>\n\n[![github actions][actions-image]][actions-url]\n[![coverage][codecov-image]][codecov-url]\n[![License][license-image]][license-url]\n[![Downloads][downloads-image]][downloads-url]\n\n[![npm badge][npm-badge-png]][package-url]\n\nES2015-compliant shim for Object.is - differentiates between -0 and +0, and can compare to NaN.\n\nEssentially, Object.is returns the same value as === - but true for NaN, and false for -0 and +0.\n\nThis package implements the [es-shim API](https://github.com/es-shims/api) interface. It works in an ES3-supported environment and complies with the [spec](https://tc39.es/ecma262).\n\n## Example\n\n```js\nObject.is = require('object-is');\nvar assert = require('assert');\n\nassert.ok(Object.is());\nassert.ok(Object.is(undefined));\nassert.ok(Object.is(undefined, undefined));\nassert.ok(Object.is(null, null));\nassert.ok(Object.is(true, true));\nassert.ok(Object.is(false, false));\nassert.ok(Object.is('foo', 'foo'));\n\nvar arr = [1, 2];\nassert.ok(Object.is(arr, arr));\nassert.equal(Object.is(arr, [1, 2]), false);\n\nassert.ok(Object.is(0, 0));\nassert.ok(Object.is(-0, -0));\nassert.equal(Object.is(0, -0), false);\n\nassert.ok(Object.is(NaN, NaN));\nassert.ok(Object.is(Infinity, Infinity));\nassert.ok(Object.is(-Infinity, -Infinity));\n```\n\n## Tests\nSimply clone the repo, `npm install`, and run `npm test`\n\n[package-url]: https://npmjs.com/package/object-is\n[npm-version-svg]: https://versionbadg.es/es-shims/object-is.svg\n[deps-svg]: https://david-dm.org/es-shims/object-is.svg\n[deps-url]: https://david-dm.org/es-shims/object-is\n[dev-deps-svg]: https://david-dm.org/es-shims/object-is/dev-status.svg\n[dev-deps-url]: https://david-dm.org/es-shims/object-is#info=devDependencies\n[npm-badge-png]: https://nodei.co/npm/object-is.png?downloads=true&stars=true\n[license-image]: https://img.shields.io/npm/l/object-is.svg\n[license-url]: LICENSE\n[downloads-image]: https://img.shields.io/npm/dm/object-is.svg\n[downloads-url]: https://npm-stat.com/charts.html?package=object-is\n[codecov-image]: https://codecov.io/gh/es-shims/object-is/branch/main/graphs/badge.svg\n[codecov-url]: https://app.codecov.io/gh/es-shims/object-is/\n[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/es-shims/object-is\n[actions-url]: https://github.com/es-shims/object-is/actions\n",
    "licenseText": "The MIT License (MIT)\n\nCopyright (c) 2014 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  "artifacts": [],
  "remote": {
    "resolved": "https://registry.yarnpkg.com/object-is/-/object-is-1.1.6.tgz#1a6a53aed2dd8f7e6775ff870bea58545956ab07",
    "type": "tarball",
    "reference": "https://registry.yarnpkg.com/object-is/-/object-is-1.1.6.tgz",
    "hash": "1a6a53aed2dd8f7e6775ff870bea58545956ab07",
    "integrity": "sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==",
    "registry": "npm",
    "packageName": "object-is",
    "cacheIntegrity": "sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q== sha1-GmpTrtLdj35ndf+HC+pYVFlWqwc="
  },
  "registry": "npm",
  "hash": "1a6a53aed2dd8f7e6775ff870bea58545956ab07"
}