{
  "manifest": {
    "name": "is-data-view",
    "version": "1.0.1",
    "description": "Is this value a JS DataView? This module works cross-realm/iframe, does not depend on `instanceof` or mutable properties, and despite ES6 Symbol.toStringTag.",
    "main": "index.js",
    "exports": {
      ".": "./index.js",
      "./package.json": "./package.json"
    },
    "types": "./index.d.ts",
    "scripts": {
      "prepack": "npmignore --auto --commentLines=autogenerated",
      "prepublishOnly": "safe-publish-latest",
      "prepublish": "not-in-publish || npm run prepublishOnly",
      "prelint": "evalmd README.md",
      "lint": "eslint --ext=js,mjs .",
      "postlint": "tsc -p .",
      "pretest": "npm run lint",
      "tests-only": "nyc tape 'test/**/*.js'",
      "test": "npm run tests-only",
      "posttest": "aud --production",
      "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)\")\""
    },
    "funding": {
      "url": "https://github.com/sponsors/ljharb"
    },
    "repository": {
      "type": "git",
      "url": "git+https://github.com/inspect-js/is-data-view.git"
    },
    "keywords": [
      "javascript",
      "ecmascript",
      "dataview",
      "data",
      "view",
      "typedarray",
      "typedarrays"
    ],
    "author": {
      "name": "Jordan Harband",
      "email": "ljharb@gmail.com"
    },
    "license": "MIT",
    "bugs": {
      "url": "https://github.com/inspect-js/is-data-view/issues"
    },
    "homepage": "https://github.com/inspect-js/is-data-view#readme",
    "dependencies": {
      "is-typed-array": "^1.1.13"
    },
    "devDependencies": {
      "@ljharb/eslint-config": "^21.1.0",
      "@types/call-bind": "^1.0.5",
      "@types/es-value-fixtures": "^1.4.4",
      "@types/for-each": "^0.3.3",
      "@types/make-arrow-function": "^1.2.2",
      "@types/make-generator-function": "^2.0.3",
      "@types/node": "^20.11.14",
      "@types/object-inspect": "^1.8.4",
      "@types/tape": "^5.6.4",
      "aud": "^2.0.4",
      "auto-changelog": "^2.4.0",
      "available-typed-arrays": "^1.0.6",
      "es-value-fixtures": "^1.4.2",
      "eslint": "=8.8.0",
      "evalmd": "^0.0.19",
      "for-each": "^0.3.3",
      "has-tostringtag": "^1.0.2",
      "in-publish": "^2.0.1",
      "make-arrow-function": "^1.2.0",
      "make-generator-function": "^2.0.0",
      "npmignore": "^0.3.1",
      "nyc": "^10.3.2",
      "object-inspect": "^1.13.1",
      "safe-publish-latest": "^2.0.0",
      "tape": "^5.7.4",
      "typescript": "next"
    },
    "testling": {
      "files": "test/index.js"
    },
    "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-is-data-view-1.0.1-4b4d3a511b70f3dc26d42c03ca9ca515d847759f-integrity/node_modules/is-data-view/package.json",
    "readmeFilename": "README.md",
    "readme": "# is-data-view <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\nIs this value a JS DataView? This module works cross-realm/iframe, does not depend on `instanceof` or mutable properties, and despite ES6 Symbol.toStringTag.\n\n## Example\n\n```js\nvar isDataView = require('is-data-view');\nvar assert = require('assert');\n\nassert.equal(false, isDataView(undefined));\nassert.equal(false, isDataView(null));\nassert.equal(false, isDataView(false));\nassert.equal(false, isDataView(true));\nassert.equal(false, isDataView([]));\nassert.equal(false, isDataView({}));\nassert.equal(false, isDataView(/a/g));\nassert.equal(false, isDataView(new RegExp('a', 'g')));\nassert.equal(false, isDataView(new Date()));\nassert.equal(false, isDataView(42));\nassert.equal(false, isDataView(NaN));\nassert.equal(false, isDataView(Infinity));\nassert.equal(false, isDataView(new Number(42)));\nassert.equal(false, isDataView('foo'));\nassert.equal(false, isDataView(Object('foo')));\nassert.equal(false, isDataView(function () {}));\nassert.equal(false, isDataView(function* () {}));\nassert.equal(false, isDataView(x => x * x));\nassert.equal(false, isDataView([]));\nassert.equal(false, isDataView(new Int8Array()));\nassert.equal(false, isDataView(new Uint8Array()));\nassert.equal(false, isDataView(new Uint8ClampedArray()));\nassert.equal(false, isDataView(new Int16Array()));\nassert.equal(false, isDataView(new Uint16Array()));\nassert.equal(false, isDataView(new Int32Array()));\nassert.equal(false, isDataView(new Uint32Array()));\nassert.equal(false, isDataView(new Float32Array()));\nassert.equal(false, isDataView(new Float64Array()));\nassert.equal(false, isDataView(new BigInt64Array()));\nassert.equal(false, isDataView(new BigUint64Array()));\n\nassert.ok(isDataView(new DataView(new ArrayBuffer(0))));\n```\n\n## Tests\nSimply clone the repo, `npm install`, and run `npm test`\n\n[package-url]: https://npmjs.org/package/is-data-view\n[npm-version-svg]: https://versionbadg.es/inspect-js/is-data-view.svg\n[deps-svg]: https://david-dm.org/inspect-js/is-data-view.svg\n[deps-url]: https://david-dm.org/inspect-js/is-data-view\n[dev-deps-svg]: https://david-dm.org/inspect-js/is-data-view/dev-status.svg\n[dev-deps-url]: https://david-dm.org/inspect-js/is-data-view#info=devDependencies\n[npm-badge-png]: https://nodei.co/npm/is-data-view.png?downloads=true&stars=true\n[license-image]: https://img.shields.io/npm/l/is-data-view.svg\n[license-url]: LICENSE\n[downloads-image]: https://img.shields.io/npm/dm/is-data-view.svg\n[downloads-url]: https://npm-stat.com/charts.html?package=is-data-view\n[codecov-image]: https://codecov.io/gh/inspect-js/is-data-view/branch/main/graphs/badge.svg\n[codecov-url]: https://app.codecov.io/gh/inspect-js/is-data-view/\n[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/is-data-view\n[actions-url]: https://github.com/inspect-js/is-data-view/actions\n",
    "licenseText": "MIT License\n\nCopyright (c) 2024 Inspect JS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject 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,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  "artifacts": [],
  "remote": {
    "resolved": "https://registry.yarnpkg.com/is-data-view/-/is-data-view-1.0.1.tgz#4b4d3a511b70f3dc26d42c03ca9ca515d847759f",
    "type": "tarball",
    "reference": "https://registry.yarnpkg.com/is-data-view/-/is-data-view-1.0.1.tgz",
    "hash": "4b4d3a511b70f3dc26d42c03ca9ca515d847759f",
    "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==",
    "registry": "npm",
    "packageName": "is-data-view",
    "cacheIntegrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w== sha1-S006URtw89wm1CwDypylFdhHdZ8="
  },
  "registry": "npm",
  "hash": "4b4d3a511b70f3dc26d42c03ca9ca515d847759f"
}