{
  "manifest": {
    "name": "is-callable",
    "version": "1.2.7",
    "author": {
      "name": "Jordan Harband",
      "email": "ljharb@gmail.com",
      "url": "http://ljharb.codes"
    },
    "funding": {
      "url": "https://github.com/sponsors/ljharb"
    },
    "contributors": [
      {
        "name": "Jordan Harband",
        "email": "ljharb@gmail.com",
        "url": "http://ljharb.codes"
      }
    ],
    "description": "Is this JS value callable? Works with Functions and GeneratorFunctions, despite ES6 @@toStringTag.",
    "license": "MIT",
    "main": "index.js",
    "scripts": {
      "prepack": "npmignore --auto --commentLines=autogenerated",
      "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)\")\"",
      "prepublishOnly": "safe-publish-latest",
      "prepublish": "not-in-publish || npm run prepublishOnly",
      "pretest": "npm run --silent lint",
      "test": "npm run tests-only --",
      "posttest": "aud --production",
      "tests-only": "nyc tape 'test/**/*.js'",
      "prelint": "eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git')",
      "lint": "eslint --ext=js,mjs ."
    },
    "repository": {
      "type": "git",
      "url": "git://github.com/inspect-js/is-callable.git"
    },
    "keywords": [
      "Function",
      "function",
      "callable",
      "generator",
      "generator function",
      "arrow",
      "arrow function",
      "ES6",
      "toStringTag",
      "@@toStringTag"
    ],
    "devDependencies": {
      "@ljharb/eslint-config": "^21.0.0",
      "aud": "^2.0.0",
      "auto-changelog": "^2.4.0",
      "available-typed-arrays": "^1.0.5",
      "eclint": "^2.8.1",
      "es-value-fixtures": "^1.4.2",
      "eslint": "=8.8.0",
      "for-each": "^0.3.3",
      "has-tostringtag": "^1.0.0",
      "make-arrow-function": "^1.2.0",
      "make-async-function": "^1.0.0",
      "make-generator-function": "^2.0.0",
      "npmignore": "^0.3.0",
      "nyc": "^10.3.2",
      "object-inspect": "^1.12.2",
      "rimraf": "^2.7.1",
      "safe-publish-latest": "^2.0.0",
      "tape": "^5.6.0"
    },
    "testling": {
      "files": "test/index.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..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,
      "startingVersion": "v1.2.5"
    },
    "publishConfig": {
      "ignore": [
        ".github/workflows"
      ]
    },
    "_registry": "npm",
    "_loc": "/homez.1033/heliovt/.cache/yarn/v6/npm-is-callable-1.2.7-3bc2a85ea742d9e36205dcacdd72ca1fdc51b055-integrity/node_modules/is-callable/package.json",
    "readmeFilename": "README.md",
    "readme": "# is-callable <sup>[![Version Badge][2]][1]</sup>\n\n[![github actions][actions-image]][actions-url]\n[![coverage][codecov-image]][codecov-url]\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\nIs this JS value callable? Works with Functions and GeneratorFunctions, despite ES6 @@toStringTag.\n\n## Supported engines\nAutomatically tested in every minor version of node.\n\nManually tested in:\n - Safari: v4 - v15 <sub>(4, 5, 5.1, 6.0.5, 6.2, 7.1, 8, 9.1.3, 10.1.2, 11.1.2, 12.1, 13.1.2, 14.1.2, 15.3, 15.6.1)</sub>\n   - Note: Safari 9 has `class`, but `Function.prototype.toString` hides that progeny and makes them look like functions, so `class` constructors will be reported by this package as callable, when they are not in fact callable.\n - Chrome: v15 - v81, v83 - v106<sub>(every integer version)</sub>\n   - Note: This includes Edge v80+ and Opera v15+, which matches Chrome\n - Firefox: v3, v3.6, v4 - v105 <sub>(every integer version)</sub>\n   - Note: v45 - v54 has `class`, but `Function.prototype.toString` hides that progeny and makes them look like functions, so `class` constructors will be reported by this package as callable, when they are not in fact callable.\n   - Note: in v42 - v63, `Function.prototype.toString` throws on HTML element constructors, or a Proxy to a function\n   - Note: in v20 - v35, HTML element constructors are not callable, despite having typeof `function`.\n   - Note: in v19, `document.all` is not callable.\n - IE: v6 - v11<sub>(every integer version</sub>\n - Opera: v11.1, v11.5, v11.6, v12.1, v12.14, v12.15, v12.16, v15+ <sub>v15+ matches Chrome</sub>\n\n## Example\n\n```js\nvar isCallable = require('is-callable');\nvar assert = require('assert');\n\nassert.notOk(isCallable(undefined));\nassert.notOk(isCallable(null));\nassert.notOk(isCallable(false));\nassert.notOk(isCallable(true));\nassert.notOk(isCallable([]));\nassert.notOk(isCallable({}));\nassert.notOk(isCallable(/a/g));\nassert.notOk(isCallable(new RegExp('a', 'g')));\nassert.notOk(isCallable(new Date()));\nassert.notOk(isCallable(42));\nassert.notOk(isCallable(NaN));\nassert.notOk(isCallable(Infinity));\nassert.notOk(isCallable(new Number(42)));\nassert.notOk(isCallable('foo'));\nassert.notOk(isCallable(Object('foo')));\n\nassert.ok(isCallable(function () {}));\nassert.ok(isCallable(function* () {}));\nassert.ok(isCallable(x => x * x));\n```\n\n## Install\n\nInstall with\n\n```\nnpm install is-callable\n```\n\n## Tests\n\nSimply clone the repo, `npm install`, and run `npm test`\n\n[1]: https://npmjs.org/package/is-callable\n[2]: https://versionbadg.es/inspect-js/is-callable.svg\n[5]: https://david-dm.org/inspect-js/is-callable.svg\n[6]: https://david-dm.org/inspect-js/is-callable\n[7]: https://david-dm.org/inspect-js/is-callable/dev-status.svg\n[8]: https://david-dm.org/inspect-js/is-callable#info=devDependencies\n[11]: https://nodei.co/npm/is-callable.png?downloads=true&stars=true\n[license-image]: https://img.shields.io/npm/l/is-callable.svg\n[license-url]: LICENSE\n[downloads-image]: https://img.shields.io/npm/dm/is-callable.svg\n[downloads-url]: https://npm-stat.com/charts.html?package=is-callable\n[codecov-image]: https://codecov.io/gh/inspect-js/is-callable/branch/main/graphs/badge.svg\n[codecov-url]: https://app.codecov.io/gh/inspect-js/is-callable/\n[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/is-callable\n[actions-url]: https://github.com/inspect-js/is-callable/actions\n",
    "licenseText": "The MIT License (MIT)\n\nCopyright (c) 2015 Jordan Harband\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\n"
  },
  "artifacts": [],
  "remote": {
    "resolved": "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055",
    "type": "tarball",
    "reference": "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz",
    "hash": "3bc2a85ea742d9e36205dcacdd72ca1fdc51b055",
    "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==",
    "registry": "npm",
    "packageName": "is-callable",
    "cacheIntegrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== sha1-O8KoXqdC2eNiBdys3XLKH9xRsFU="
  },
  "registry": "npm",
  "hash": "3bc2a85ea742d9e36205dcacdd72ca1fdc51b055"
}