{"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"keywords":["javascript","ecmascript","TypedArray.prototype.slice","polyfill","shim","Typed Arrays","array","buffer","TypedArray#slice","slice","typed array","es-shim API"],"dist-tags":{"latest":"1.0.5"},"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"_rev":"10","description":"ES spec-compliant shim for TypedArray.prototype.slice","readme":"# TypedArray.prototype.slice <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\nAn ES spec-compliant `TypedArray.prototype.slice` shim. Invoke its \"shim\" method to shim TypedArray.prototype.slice if it is unavailable.\n\nThis package implements the [es-shim API](https://github.com/es-shims/api) interface. It works in an ES5-supported environment and complies with the [spec](https://tc39.es/ecma262/#sec-%typedarray%.prototype.slice).\n\nMost common usage:\n```js\nvar assert = require('assert');\nvar slice = require('typedarray.prototype.slice');\n\nvar arr = new Uint8Array([1, 2, 3]);\n\nvar arr2 = slice(arr);\n\narr2[0] = 2;\narr2[1] = 3;\n\nassert.deepEqual(arr, new Uint8Array([1, 2, 3]));\nassert.deepEqual(arr2, new Uint8Array([2, 3, 3]));\nassert.notEqual(arr.buffer, arr2.buffer);\n\nif (!Uint8Array.prototype.slice) {\n\tslice.shim();\n}\n\nvar arr3 = arr.slice();\narr3[0] = 2;\narr3[1] = 3;\n\nassert.deepEqual(arr, new Uint8Array([1, 2, 3]));\nassert.deepEqual(arr3, new Uint8Array([2, 3, 3]));\nassert.notEqual(arr.buffer, arr3.buffer);\n```\n\n## Engines where this is needed\n\n\t- node v0.11.4 - v4: no prototype or own `slice` method\n\t- node < v0.11.3: own `slice` method that fails to clone the underlying buffer\n\n## Tests\nSimply clone the repo, `npm install`, and run `npm test`\n\n[package-url]: https://npmjs.org/package/typedarray.prototype.slice\n[npm-version-svg]: https://versionbadg.es/es-shims/TypedArray.prototype.slice.svg\n[deps-svg]: https://david-dm.org/es-shims/TypedArray.prototype.slice.svg\n[deps-url]: https://david-dm.org/es-shims/TypedArray.prototype.slice\n[dev-deps-svg]: https://david-dm.org/es-shims/TypedArray.prototype.slice/dev-status.svg\n[dev-deps-url]: https://david-dm.org/es-shims/TypedArray.prototype.slice#info=devDependencies\n[npm-badge-png]: https://nodei.co/npm/typedarray.prototype.slice.png?downloads=true&stars=true\n[license-image]: https://img.shields.io/npm/l/typedarray.prototype.slice.svg\n[license-url]: LICENSE\n[downloads-image]: https://img.shields.io/npm/dm/typedarray.prototype.slice.svg\n[downloads-url]: https://npm-stat.com/charts.html?package=typedarray.prototype.slice\n[codecov-image]: https://codecov.io/gh/es-shims/TypedArray.prototype.slice/branch/main/graphs/badge.svg\n[codecov-url]: https://app.codecov.io/gh/es-shims/TypedArray.prototype.slice/\n[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/es-shims/TypedArray.prototype.slice\n[actions-url]: https://github.com/es-shims/TypedArray.prototype.slice/actions\n","repository":{"url":"git+https://github.com/es-shims/TypedArray.prototype.slice.git","type":"git"},"bugs":{"url":"https://github.com/es-shims/TypedArray.prototype.slice/issues"},"license":"MIT","versions":{"1.0.0":{"name":"typedarray.prototype.slice","version":"1.0.0","keywords":["javascript","ecmascript","TypedArray.prototype.slice","polyfill","shim","Typed Arrays","array","buffer","TypedArray#slice","slice","typed array","es-shim API"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"typedarray.prototype.slice@1.0.0","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/es-shims/TypedArray.prototype.slice#readme","bugs":{"url":"https://github.com/es-shims/TypedArray.prototype.slice/issues"},"dist":{"shasum":"cd1b3b15c86587b8fe773584380d6541185b95ca","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/typedarray.prototype.slice/-/typedarray.prototype.slice-1.0.0.tgz","fileCount":16,"integrity":"sha512-5f3ut2gPdJeciOatd1th6rnCfZMycIiMkBEYueQIozJ2QX9kRuzHf8rxRylNMM7uSP57FzfZm60x/t1ohffbug==","signatures":[{"sig":"MEYCIQDAPCR8bQVIqYC378Q8jRsyaslwMYWgedSx8NqPNxpdogIhAJtylgg2v+ghMDsV4NfF4f5GKEy8vgJhS5Ct5mNbCYDk","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18995},"main":"index.js","engines":{"node":">= 0.4"},"exports":{".":"./index.js","./auto":"./auto.js","./shim":"./shim.js","./polyfill":"./polyfill.js","./package.json":"./package.json","./implementation":"./implementation.js"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"d54f78b0414b72d5906d971caa3066b3a52f402c","scripts":{"lint":"eslint --ext=js,mjs .","test":"npm run tests-only","prelint":"eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git')","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","postlint":"evalmd README.md && es-shim-api --bound","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape 'test/**/*.js'","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"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"testling":{"files":"test/index.js"},"repository":{"url":"git+https://github.com/es-shims/TypedArray.prototype.slice.git","type":"git"},"_npmVersion":"9.7.2","description":"ES spec-compliant shim for TypedArray.prototype.slice","directories":{},"_nodeVersion":"20.4.0","dependencies":{"call-bind":"^1.0.2","es-abstract":"^1.22.1","get-intrinsic":"^1.2.1","define-properties":"^1.2.0","typed-array-buffer":"^1.0.0","typed-array-byte-offset":"^1.0.0"},"publishConfig":{"ignore":[".github/workflows"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^2.0.3","nyc":"^10.3.2","tape":"^5.6.6","eclint":"^2.8.1","eslint":"=8.8.0","evalmd":"^0.0.19","for-each":"^0.3.3","npmignore":"^0.3.0","in-publish":"^2.0.1","@es-shims/api":"^2.4.2","auto-changelog":"^2.4.0","object-inspect":"^1.12.3","has-strict-mode":"^1.0.1","es-value-fixtures":"^1.4.2","safe-publish-latest":"^2.0.0","functions-have-names":"^1.2.3","@ljharb/eslint-config":"^21.1.0","available-typed-arrays":"^1.0.5"},"_npmOperationalInternal":{"tmp":"tmp/typedarray.prototype.slice_1.0.0_1689718047299_0.9179120757022503","host":"s3://npm-registry-packages"}},"1.0.1":{"name":"typedarray.prototype.slice","version":"1.0.1","keywords":["javascript","ecmascript","TypedArray.prototype.slice","polyfill","shim","Typed Arrays","array","buffer","TypedArray#slice","slice","typed array","es-shim API"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"typedarray.prototype.slice@1.0.1","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/es-shims/TypedArray.prototype.slice#readme","bugs":{"url":"https://github.com/es-shims/TypedArray.prototype.slice/issues"},"dist":{"shasum":"a49598eaa076cab8f36bb3065696c8bdf6c7fc36","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/typedarray.prototype.slice/-/typedarray.prototype.slice-1.0.1.tgz","fileCount":16,"integrity":"sha512-lftaYlnHXwWhvVWDqqKNTIQuRzPBku0hxP0XiXc2YHBxO/VZ5UY8W5oCedvZI/Adgj640uq6ft97H1y1r9oNaw==","signatures":[{"sig":"MEUCIC44hAL8LcUm5m6nQ24V5lxVwHQ1j4B6/x739pph7xsAAiEAoqH15sZk5TQmHrGAsMbPx06tceyUat73gHkC3B5KtR0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19241},"main":"index.js","engines":{"node":">= 0.4"},"exports":{".":"./index.js","./auto":"./auto.js","./shim":"./shim.js","./polyfill":"./polyfill.js","./package.json":"./package.json","./implementation":"./implementation.js"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"29c5a29f2efb7427f9f79dbf8b713ed242b74af5","scripts":{"lint":"eslint --ext=js,mjs .","test":"npm run tests-only","prelint":"eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git')","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","postlint":"evalmd README.md && es-shim-api --bound","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape 'test/**/*.js'","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"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"testling":{"files":"test/index.js"},"repository":{"url":"git+https://github.com/es-shims/TypedArray.prototype.slice.git","type":"git"},"_npmVersion":"9.7.2","description":"ES spec-compliant shim for TypedArray.prototype.slice","directories":{},"_nodeVersion":"20.4.0","dependencies":{"call-bind":"^1.0.2","es-abstract":"^1.22.1","get-intrinsic":"^1.2.1","define-properties":"^1.2.0","typed-array-buffer":"^1.0.0","typed-array-byte-offset":"^1.0.0"},"publishConfig":{"ignore":[".github/workflows"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^2.0.3","nyc":"^10.3.2","tape":"^5.6.6","eclint":"^2.8.1","eslint":"=8.8.0","evalmd":"^0.0.19","for-each":"^0.3.3","npmignore":"^0.3.0","in-publish":"^2.0.1","@es-shims/api":"^2.4.2","auto-changelog":"^2.4.0","object-inspect":"^1.12.3","has-strict-mode":"^1.0.1","es-value-fixtures":"^1.4.2","safe-publish-latest":"^2.0.0","functions-have-names":"^1.2.3","@ljharb/eslint-config":"^21.1.0","available-typed-arrays":"^1.0.5"},"_npmOperationalInternal":{"tmp":"tmp/typedarray.prototype.slice_1.0.1_1689718205114_0.8850185812314129","host":"s3://npm-registry-packages"}},"1.0.2":{"name":"typedarray.prototype.slice","version":"1.0.2","keywords":["javascript","ecmascript","TypedArray.prototype.slice","polyfill","shim","Typed Arrays","array","buffer","TypedArray#slice","slice","typed array","es-shim API"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"typedarray.prototype.slice@1.0.2","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/es-shims/TypedArray.prototype.slice#readme","bugs":{"url":"https://github.com/es-shims/TypedArray.prototype.slice/issues"},"dist":{"shasum":"caf575928c58aacc84f6c1a75ccc9e4d67a0ae5c","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/typedarray.prototype.slice/-/typedarray.prototype.slice-1.0.2.tgz","fileCount":16,"integrity":"sha512-3acvGtaZjMLUAlYNJVS8SVl9zf+H14cDfvzQoRX1Rax4oNT1yGFvhXXR5fjDVX7GClbkBfubcsY0XnM0wqlcHw==","signatures":[{"sig":"MEUCIQCsNoPzmq0V3SAongByMtfw+xpZ+wzk0d6OJMTIhRUa0QIgS/bqxPH0rcOzHN8SM/EayVWvaQiDjJarqWbxeJbQd/A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19919},"main":"index.js","engines":{"node":">= 0.4"},"exports":{".":"./index.js","./auto":"./auto.js","./shim":"./shim.js","./polyfill":"./polyfill.js","./package.json":"./package.json","./implementation":"./implementation.js"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"cecb433b54ffa7f8b30bd52a6fcf0e03ffb43683","scripts":{"lint":"eslint --ext=js,mjs .","test":"npm run tests-only","prelint":"eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git')","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","postlint":"evalmd README.md && es-shim-api --bound","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape 'test/**/*.js'","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"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"testling":{"files":"test/index.js"},"repository":{"url":"git+https://github.com/es-shims/TypedArray.prototype.slice.git","type":"git"},"_npmVersion":"10.2.4","description":"ES spec-compliant shim for TypedArray.prototype.slice","directories":{},"_nodeVersion":"21.6.0","dependencies":{"call-bind":"^1.0.6","es-errors":"^1.3.0","es-abstract":"^1.22.3","define-properties":"^1.2.1","typed-array-buffer":"^1.0.0","typed-array-byte-offset":"^1.0.0"},"publishConfig":{"ignore":[".github/workflows"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^2.0.4","nyc":"^10.3.2","tape":"^5.7.4","eclint":"^2.8.1","eslint":"=8.8.0","evalmd":"^0.0.19","for-each":"^0.3.3","npmignore":"^0.3.1","in-publish":"^2.0.1","@es-shims/api":"^2.4.2","auto-changelog":"^2.4.0","object-inspect":"^1.13.1","has-strict-mode":"^1.0.1","es-value-fixtures":"^1.4.2","safe-publish-latest":"^2.0.0","functions-have-names":"^1.2.3","@ljharb/eslint-config":"^21.1.0","available-typed-arrays":"^1.0.6"},"_npmOperationalInternal":{"tmp":"tmp/typedarray.prototype.slice_1.0.2_1707246564954_0.07485609825204409","host":"s3://npm-registry-packages"}},"1.0.3":{"name":"typedarray.prototype.slice","version":"1.0.3","keywords":["javascript","ecmascript","TypedArray.prototype.slice","polyfill","shim","Typed Arrays","array","buffer","TypedArray#slice","slice","typed array","es-shim API"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"typedarray.prototype.slice@1.0.3","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/es-shims/TypedArray.prototype.slice#readme","bugs":{"url":"https://github.com/es-shims/TypedArray.prototype.slice/issues"},"dist":{"shasum":"bce2f685d3279f543239e4d595e0d021731d2d1a","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/typedarray.prototype.slice/-/typedarray.prototype.slice-1.0.3.tgz","fileCount":16,"integrity":"sha512-8WbVAQAUlENo1q3c3zZYuy5k9VzBQvp8AX9WOtbvyWlLM1v5JaSRmjubLjzHF4JFtptjH/5c/i95yaElvcjC0A==","signatures":[{"sig":"MEUCIQDAVr/RqDnUy/vCn+cCI1VOS1fqvEbhWWc9LkRiApM+zwIgXcMXX7pIphTCpWFyO1CrXp/DwgVCQI7dSP/LYcFmPE0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20558},"main":"index.js","engines":{"node":">= 0.4"},"exports":{".":"./index.js","./auto":"./auto.js","./shim":"./shim.js","./polyfill":"./polyfill.js","./package.json":"./package.json","./implementation":"./implementation.js"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"85540395b4c26a4d163db946d23d350926bfd835","scripts":{"lint":"eslint --ext=js,mjs .","test":"npm run tests-only","prelint":"eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git')","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","postlint":"evalmd README.md && es-shim-api --bound","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape 'test/**/*.js'","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"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"testling":{"files":"test/index.js"},"repository":{"url":"git+https://github.com/es-shims/TypedArray.prototype.slice.git","type":"git"},"_npmVersion":"10.5.0","description":"ES spec-compliant shim for TypedArray.prototype.slice","directories":{},"_nodeVersion":"21.7.0","dependencies":{"call-bind":"^1.0.7","es-errors":"^1.3.0","es-abstract":"^1.23.0","define-properties":"^1.2.1","typed-array-buffer":"^1.0.2","typed-array-byte-offset":"^1.0.2"},"publishConfig":{"ignore":[".github/workflows"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^2.0.4","nyc":"^10.3.2","tape":"^5.7.5","eclint":"^2.8.1","eslint":"=8.8.0","evalmd":"^0.0.19","for-each":"^0.3.3","npmignore":"^0.3.1","in-publish":"^2.0.1","@es-shims/api":"^2.4.2","auto-changelog":"^2.4.0","object-inspect":"^1.13.1","has-strict-mode":"^1.0.1","es-value-fixtures":"^1.4.2","safe-publish-latest":"^2.0.0","functions-have-names":"^1.2.3","@ljharb/eslint-config":"^21.1.0","available-typed-arrays":"^1.0.7"},"_npmOperationalInternal":{"tmp":"tmp/typedarray.prototype.slice_1.0.3_1710523685652_0.9988995298203402","host":"s3://npm-registry-packages"}},"1.0.4":{"name":"typedarray.prototype.slice","version":"1.0.4","keywords":["javascript","ecmascript","TypedArray.prototype.slice","polyfill","shim","Typed Arrays","array","buffer","TypedArray#slice","slice","typed array","es-shim API"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"typedarray.prototype.slice@1.0.4","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/es-shims/TypedArray.prototype.slice#readme","bugs":{"url":"https://github.com/es-shims/TypedArray.prototype.slice/issues"},"dist":{"shasum":"7f779a2fe63da7bf3cd9220b81a986915759910b","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/typedarray.prototype.slice/-/typedarray.prototype.slice-1.0.4.tgz","fileCount":16,"integrity":"sha512-39kLrJw12mfXs5Q1Db086cTKyS8GPsu5TAf6JmO3zL3iBAdz6/R5cojzTHSfcSCNGO4QTuNJH4/8o+t3PknHbw==","signatures":[{"sig":"MEUCIQDw2vCo4LF6cSHzSI4PFXgqjRy624W8SYWGN3bG7qiThAIgSwc+YdVLX9DdVJlTD4I2o7QqEuCyy90cAvLlKI7USAc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21973},"main":"index.js","engines":{"node":">= 0.4"},"exports":{".":"./index.js","./auto":"./auto.js","./shim":"./shim.js","./polyfill":"./polyfill.js","./package.json":"./package.json","./implementation":"./implementation.js"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"e7e6e12b587bd733c2d8e1b0629b6eb6ca5b35c0","scripts":{"lint":"eslint --ext=js,mjs .","test":"npm run tests-only","prelint":"eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git')","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","postlint":"evalmd README.md && es-shim-api --bound","posttest":"npx npm@'>= 10.2' audit --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape 'test/**/*.js'","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"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"testling":{"files":"test/index.js"},"repository":{"url":"git+https://github.com/es-shims/TypedArray.prototype.slice.git","type":"git"},"_npmVersion":"10.9.2","description":"ES spec-compliant shim for TypedArray.prototype.slice","directories":{},"_nodeVersion":"23.5.0","dependencies":{"call-bind":"^1.0.8","es-errors":"^1.3.0","get-proto":"^1.0.1","es-abstract":"^1.23.9","math-intrinsics":"^1.1.0","define-properties":"^1.2.1","typed-array-buffer":"^1.0.3","typed-array-byte-offset":"^1.0.4"},"publishConfig":{"ignore":[".github/workflows"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"nyc":"^10.3.2","tape":"^5.9.0","eclint":"^2.8.1","eslint":"=8.8.0","evalmd":"^0.0.19","encoding":"^0.1.13","for-each":"^0.3.3","npmignore":"^0.3.1","in-publish":"^2.0.1","@es-shims/api":"^2.5.1","auto-changelog":"^2.5.0","object-inspect":"^1.13.3","has-strict-mode":"^1.0.1","es-value-fixtures":"^1.5.0","safe-publish-latest":"^2.0.0","functions-have-names":"^1.2.3","@ljharb/eslint-config":"^21.1.1","available-typed-arrays":"^1.0.7"},"_npmOperationalInternal":{"tmp":"tmp/typedarray.prototype.slice_1.0.4_1735864805417_0.9756622431871789","host":"s3://npm-registry-packages-npm-production"},"deprecated":"This version has a typo in a package specifier, and will not work"},"1.0.5":{"name":"typedarray.prototype.slice","version":"1.0.5","keywords":["javascript","ecmascript","TypedArray.prototype.slice","polyfill","shim","Typed Arrays","array","buffer","TypedArray#slice","slice","typed array","es-shim API"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"typedarray.prototype.slice@1.0.5","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/es-shims/TypedArray.prototype.slice#readme","bugs":{"url":"https://github.com/es-shims/TypedArray.prototype.slice/issues"},"dist":{"shasum":"a40f896968573b33cbb466a61622d3ee615a0728","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/typedarray.prototype.slice/-/typedarray.prototype.slice-1.0.5.tgz","fileCount":16,"integrity":"sha512-q7QNVDGTdl702bVFiI5eY4l/HkgCM6at9KhcFbgUAzezHFbOVy4+0O/lCjsABEQwbZPravVfBIiBVGo89yzHFg==","signatures":[{"sig":"MEQCIHk/ihGc7Ti0U73CV2wN5f40WjDQ/DNG7p2/2/lzEMJ1AiB52KdnUrLkNvD7ubnxNdoFBv3SfggwbZwQoq9U/w8xpA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22291},"main":"index.js","engines":{"node":">= 0.4"},"exports":{".":"./index.js","./auto":"./auto.js","./shim":"./shim.js","./polyfill":"./polyfill.js","./package.json":"./package.json","./implementation":"./implementation.js"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"30b97e9169b958b3c016d7eb3a89fe06fc94cf3a","scripts":{"lint":"eslint --ext=js,mjs .","test":"npm run tests-only","prelint":"eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git')","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","postlint":"evalmd README.md && es-shim-api --bound","posttest":"npx npm@'>= 10.2' audit --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape 'test/**/*.js'","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"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"testling":{"files":"test/index.js"},"repository":{"url":"git+https://github.com/es-shims/TypedArray.prototype.slice.git","type":"git"},"_npmVersion":"10.9.2","description":"ES spec-compliant shim for TypedArray.prototype.slice","directories":{},"_nodeVersion":"23.5.0","dependencies":{"call-bind":"^1.0.8","es-errors":"^1.3.0","get-proto":"^1.0.1","es-abstract":"^1.23.9","math-intrinsics":"^1.1.0","define-properties":"^1.2.1","typed-array-buffer":"^1.0.3","typed-array-byte-offset":"^1.0.4"},"publishConfig":{"ignore":[".github/workflows"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"nyc":"^10.3.2","tape":"^5.9.0","eclint":"^2.8.1","eslint":"=8.8.0","evalmd":"^0.0.19","encoding":"^0.1.13","for-each":"^0.3.3","npmignore":"^0.3.1","in-publish":"^2.0.1","@es-shims/api":"^2.5.1","auto-changelog":"^2.5.0","object-inspect":"^1.13.3","has-strict-mode":"^1.0.1","es-value-fixtures":"^1.5.0","safe-publish-latest":"^2.0.0","functions-have-names":"^1.2.3","@ljharb/eslint-config":"^21.1.1","available-typed-arrays":"^1.0.7"},"_npmOperationalInternal":{"tmp":"tmp/typedarray.prototype.slice_1.0.5_1735870052683_0.3431448620786608","host":"s3://npm-registry-packages-npm-production"}}},"name":"typedarray.prototype.slice","time":{"created":"2023-07-18T22:07:27.298Z","modified":"2026-04-17T13:29:27.960Z","1.0.0":"2023-07-18T22:07:27.484Z","1.0.1":"2023-07-18T22:10:05.355Z","1.0.2":"2024-02-06T19:09:25.099Z","1.0.3":"2024-03-15T17:28:05.842Z","1.0.4":"2025-01-03T00:40:05.595Z","1.0.5":"2025-01-03T02:07:32.847Z"},"readmeFilename":"README.md","_id":"typedarray.prototype.slice","homepage":"https://github.com/es-shims/TypedArray.prototype.slice#readme"}