{"_id":"safe-array-concat","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"keywords":["safe","Array","concat","push","isConcatSpreadable"],"dist-tags":{"latest":"1.1.4"},"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"description":"`Array.prototype.concat`, but made safe by ignoring Symbol.isConcatSpreadable","readme":"# safe-array-concat <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\n`Array.prototype.concat`, but made safe by ignoring Symbol.isConcatSpreadable\n\n## Getting started\n\n```sh\nnpm install --save safe-array-concat\n```\n\n## Usage/Examples\n\n```js\nvar safeConcat = require('safe-array-concat');\nvar assert = require('assert');\n\nassert.deepEqual([].concat([1, 2], 3, [[4]]), [1, 2, 3, [4]], 'arrays spread as expected with normal concat');\nassert.deepEqual(safeConcat([1, 2], 3, [[4]]), [1, 2, 3, [4]], 'arrays spread as expected with safe concat');\n\nString.prototype[Symbol.isConcatSpreadable] = true;\nassert.deepEqual([].concat('foo', Object('bar')), ['foo', 'b', 'a', 'r'], 'spreadable String objects are spread with normal concat!!!');\nassert.deepEqual(safeConcat('foo', Object('bar')), ['foo', Object('bar')], 'spreadable String objects are not spread with safe concat');\n\nArray.prototype[Symbol.isConcatSpreadable] = false;\nassert.deepEqual([].concat([1, 2], 3, [[4]]), [[], [1, 2], 3, [[4]]], 'non-concat-spreadable arrays do not spread with normal concat!!!');\nassert.deepEqual(safeConcat([1, 2], 3, [[4]]), [1, 2, 3, [4]], 'non-concat-spreadable arrays still spread with safe concat');\n```\n\n## Tests\nSimply clone the repo, `npm install`, and run `npm test`\n\n[package-url]: https://npmjs.org/package/safe-array-concat\n[npm-version-svg]: https://versionbadg.es/ljharb/safe-array-concat.svg\n[deps-svg]: https://david-dm.org/ljharb/safe-array-concat.svg\n[deps-url]: https://david-dm.org/ljharb/safe-array-concat\n[dev-deps-svg]: https://david-dm.org/ljharb/safe-array-concat/dev-status.svg\n[dev-deps-url]: https://david-dm.org/ljharb/safe-array-concat#info=devDependencies\n[npm-badge-png]: https://nodei.co/npm/safe-array-concat.png?downloads=true&stars=true\n[license-image]: https://img.shields.io/npm/l/safe-array-concat.svg\n[license-url]: LICENSE\n[downloads-image]: https://img.shields.io/npm/dm/safe-array-concat.svg\n[downloads-url]: https://npm-stat.com/charts.html?package=safe-array-concat\n[codecov-image]: https://codecov.io/gh/ljharb/safe-array-concat/branch/main/graphs/badge.svg\n[codecov-url]: https://app.codecov.io/gh/ljharb/safe-array-concat/\n[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/ljharb/safe-array-concat\n[actions-url]: https://github.com/ljharb/safe-array-concat/actions\n","repository":{"type":"git","url":"git+https://github.com/ljharb/safe-array-concat.git"},"bugs":{"url":"https://github.com/ljharb/safe-array-concat/issues"},"license":"MIT","versions":{"1.1.2":{"name":"safe-array-concat","version":"1.1.2","keywords":["safe","Array","concat","push","isConcatSpreadable"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"safe-array-concat@1.1.2","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/ljharb/safe-array-concat#readme","bugs":{"url":"https://github.com/ljharb/safe-array-concat/issues"},"dist":{"shasum":"81d77ee0c4e8b863635227c721278dd524c20edb","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/safe-array-concat/-/safe-array-concat-1.1.2.tgz","fileCount":11,"integrity":"sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==","signatures":[{"sig":"MEYCIQD8qAGV9eeRMVOKGpJ+F5UGciH7RA6T3CXEK8NDfbxCoAIhAPEEECClhAuj1/Y3kI5ZbB6BA+2FpEpRVn9ETV0KpcnH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16376},"main":"index.js","types":"./index.d.ts","engines":{"node":">=0.4"},"exports":{".":"./index.js","./package.json":"./package.json"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"c327a77b594db16c42e3661a3c7530ce1157398f","scripts":{"tsc":"tsc -p .","lint":"eslint --ext=js,mjs .","test":"npm run tests-only","posttsc":"attw -P","prelint":"npm run tsc","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","postlint":"evalmd README.md","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape test","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"},"repository":{"url":"git+https://github.com/ljharb/safe-array-concat.git","type":"git"},"_npmVersion":"10.5.0","description":"`Array.prototype.concat`, but made safe by ignoring Symbol.isConcatSpreadable","directories":{},"sideEffects":false,"_nodeVersion":"21.7.0","dependencies":{"isarray":"^2.0.5","call-bind":"^1.0.7","has-symbols":"^1.0.3","get-intrinsic":"^1.2.4"},"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","eslint":"=8.8.0","evalmd":"^0.0.19","npmignore":"^0.3.1","in-publish":"^2.0.1","typescript":"next","@types/tape":"^5.6.4","mock-property":"^1.0.3","@types/isarray":"^2.0.2","auto-changelog":"^2.4.0","@ljharb/tsconfig":"^0.2.0","@types/call-bind":"^1.0.5","@types/has-symbols":"^1.0.2","safe-publish-latest":"^2.0.0","set-function-length":"^1.2.2","@types/get-intrinsic":"^1.2.2","@types/mock-property":"^1.0.2","@arethetypeswrong/cli":"^0.15.1","@ljharb/eslint-config":"^21.1.0"},"_npmOperationalInternal":{"tmp":"tmp/safe-array-concat_1.1.2_1710018572405_0.3598947253954836","host":"s3://npm-registry-packages"}},"1.1.3":{"name":"safe-array-concat","version":"1.1.3","keywords":["safe","Array","concat","push","isConcatSpreadable"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"safe-array-concat@1.1.3","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/ljharb/safe-array-concat#readme","bugs":{"url":"https://github.com/ljharb/safe-array-concat/issues"},"dist":{"shasum":"c9e54ec4f603b0bbb8e7e5007a5ee7aecd1538c3","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/safe-array-concat/-/safe-array-concat-1.1.3.tgz","fileCount":11,"integrity":"sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==","signatures":[{"sig":"MEQCIHWoO+Hi1f3R0LdsOk97xdfAPLOgZxiIwyf/Ho49qaBQAiARz4Da1rvPg+4kTjnvvV281un/JaXnvssqFGZCxUlqXQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17603},"main":"index.js","types":"./index.d.ts","engines":{"node":">=0.4"},"exports":{".":"./index.js","./package.json":"./package.json"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"4c7cea76477b0249570311a410cef33dc70fb38a","scripts":{"lint":"eslint --ext=js,mjs .","test":"npm run tests-only","prelint":"evalmd README.md","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","postlint":"tsc && attw -P","posttest":"npx npm@'>= 10.2' audit --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape test","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"},"repository":{"url":"git+https://github.com/ljharb/safe-array-concat.git","type":"git"},"_npmVersion":"10.9.2","description":"`Array.prototype.concat`, but made safe by ignoring Symbol.isConcatSpreadable","directories":{},"sideEffects":false,"_nodeVersion":"23.4.0","dependencies":{"isarray":"^2.0.5","call-bind":"^1.0.8","call-bound":"^1.0.2","has-symbols":"^1.1.0","get-intrinsic":"^1.2.6"},"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","eslint":"=8.8.0","evalmd":"^0.0.19","encoding":"^0.1.13","npmignore":"^0.3.1","in-publish":"^2.0.1","typescript":"next","@types/tape":"^5.6.5","mock-property":"^1.1.0","@types/isarray":"^2.0.2","auto-changelog":"^2.5.0","@ljharb/tsconfig":"^0.2.2","@types/call-bind":"^1.0.5","@types/has-symbols":"^1.0.2","safe-publish-latest":"^2.0.0","set-function-length":"^1.2.2","@types/get-intrinsic":"^1.2.3","@arethetypeswrong/cli":"^0.17.1","@ljharb/eslint-config":"^21.1.1"},"_npmOperationalInternal":{"tmp":"tmp/safe-array-concat_1.1.3_1733974114169_0.02786563913921203","host":"s3://npm-registry-packages-npm-production"}},"1.1.4":{"name":"safe-array-concat","version":"1.1.4","description":"`Array.prototype.concat`, but made safe by ignoring Symbol.isConcatSpreadable","main":"index.js","exports":{".":"./index.js","./package.json":"./package.json"},"sideEffects":false,"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)\")\"","prelint":"evalmd README.md","lint":"eslint --ext=js,mjs .","postlint":"tsc && attw -P","prepublish":"not-in-publish || npm run prepublishOnly","prepublishOnly":"safe-publish-latest","pretest":"npm run lint","tests-only":"nyc tape test","test":"npm run tests-only","posttest":"npx npm@'>= 10.2' audit --production"},"keywords":["safe","Array","concat","push","isConcatSpreadable"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"funding":{"url":"https://github.com/sponsors/ljharb"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ljharb/safe-array-concat.git"},"bugs":{"url":"https://github.com/ljharb/safe-array-concat/issues"},"homepage":"https://github.com/ljharb/safe-array-concat#readme","devDependencies":{"@arethetypeswrong/cli":"^0.18.2","@ljharb/eslint-config":"^22.2.2","@ljharb/tsconfig":"^0.3.2","@types/call-bind":"^1.0.5","@types/get-intrinsic":"^1.2.3","@types/isarray":"^2.0.3","@types/tape":"^5.8.1","auto-changelog":"^2.5.0","encoding":"^0.1.13","eslint":"^8.57.1","evalmd":"^0.0.19","in-publish":"^2.0.1","mock-property":"^1.1.0","npmignore":"^0.3.5","nyc":"^10.3.2","safe-publish-latest":"^2.0.0","set-function-length":"^1.2.2","tape":"^5.9.0","typescript":"next"},"dependencies":{"call-bind":"^1.0.9","call-bound":"^1.0.4","get-intrinsic":"^1.3.0","has-symbols":"^1.1.0","isarray":"^2.0.5"},"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","unreleased":false,"commitLimit":false,"backfillLimit":false,"hideCredit":true},"publishConfig":{"ignore":[".github/workflows"]},"engines":{"node":">=0.4"},"gitHead":"255e6251c9b3852b10475ce775499cf88679624e","types":"./index.d.ts","_id":"safe-array-concat@1.1.4","_nodeVersion":"25.9.0","_npmVersion":"11.12.1","dist":{"integrity":"sha512-wtZlHyOje6OZTGqAoaDKxFkgRtkF9CnHAVnCHKfuj200wAgL+bSJhdsCD2l0Qx/2ekEXjPWcyKkfGb5CPboslg==","shasum":"a54cc9b61a57f33b42abad3cbdda3a2b38cc5719","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/safe-array-concat/-/safe-array-concat-1.1.4.tgz","fileCount":11,"unpackedSize":18803,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEQCIA9vCHE4yuECF18jNSIko9/zQBVUb/6sCmjeOmxwlzu4AiBE6Ii8/ILWuN8qo/Ao5gygdQcFWOtnSP47AEtYoNTX0g=="}]},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"directories":{},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/safe-array-concat_1.1.4_1776665546161_0.9364081858512456"},"_hasShrinkwrap":false},"1.0.0":{"name":"safe-array-concat","version":"1.0.0","keywords":["safe","Array","concat","push","isConcatSpreadable"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"safe-array-concat@1.0.0","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/ljharb/safe-array-concat#readme","bugs":{"url":"https://github.com/ljharb/safe-array-concat/issues"},"dist":{"shasum":"2064223cba3c08d2ee05148eedbc563cd6d84060","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/safe-array-concat/-/safe-array-concat-1.0.0.tgz","fileCount":9,"integrity":"sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ==","signatures":[{"sig":"MEQCIHunRRa9gi0UnjTCXUjA/Y/ElvKkljAQK3O9vnT4dKEUAiBN3CeOvec7aercygLbfMGdL9u4WhQYCDYIYXWDAajLqw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":11294,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkQW6oACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrldhAAiuGjZnIdxTxDOkQuZZhsu7OpCe/MwIV6uxfj38jEex6D4Oid\r\n165PqCiO6J/DpSHyoWtDOYwmsCpgKNC5Luz6gsk4AaPfFrpkLcIbTxv2kMB7\r\nNytsZWg/aQ6zhN5NiJw2bSjX6Tm+8xfyI8eXlsv4tf0kiJh3mRv5IUD9fgAH\r\nrhIsTEuevg/3Wn3t+49g0kopflC1uv9Ky8aNk/Rn44vZ0gk4H8GXD+vSuikJ\r\nPONhCpxYe2C6/RQQQfRiqyDe+H0P0zM80D1V2zY+FEbVI9tuc4vKuleZ30OE\r\n8293P/gBjUQDL/E4FvayzyGWz15eHQRRRNFjLDAdu/6d5SYtRJKpAAF5GRjW\r\n3bPQAm2QbF/DMNix6wXWQHkuzsjvmrwEUC5jUmSzy0CGv8kr+zqstdtClAyG\r\nNW7EmNTdhxjIi2LIlXy2mUgFlulDBwRENKqwGYM6w+oBTQkqUMuml0IgE1mM\r\nGE//tnHzZA8YsyDXJWQ0lM6d2lju9Ux3SHV0TZDPcmofQBAtDIJljWaMLlAr\r\n7lkHxHpHcQTnJtxc64PfSmjpO6+LdX73cQmNy+1C1QYQlHb84c+bCj0DbrYB\r\nCJKK7e/2VzRBNKZ/s/i60/nncFWEaybB4eR5SL8ZSu9C+AE26rUI2nIvWDr/\r\n+6Ygfu8y73Wzmd1TUVhE0zUH3fLDY+mlQTE=\r\n=xPJw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=0.4"},"exports":{".":"./index.js","./package.json":"./package.json"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"f929a1b65eb3525d93296ecc12f709b18089081c","scripts":{"lint":"eslint --ext=js,mjs .","test":"npm run tests-only","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","postlint":"evalmd README.md","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape test","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"},"repository":{"url":"git+https://github.com/ljharb/safe-array-concat.git","type":"git"},"_npmVersion":"9.6.4","description":"`Array.prototype.concat`, but made safe by ignoring Symbol.isConcatSpreadable","directories":{},"_nodeVersion":"20.0.0","dependencies":{"isarray":"^2.0.5","call-bind":"^1.0.2","has-symbols":"^1.0.3","get-intrinsic":"^1.2.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.2","nyc":"^10.3.2","tape":"^5.6.3","eslint":"=8.8.0","evalmd":"^0.0.19","npmignore":"^0.3.0","in-publish":"^2.0.1","mock-property":"^1.0.0","auto-changelog":"^2.4.0","safe-publish-latest":"^2.0.0","@ljharb/eslint-config":"^21.0.1"},"_npmOperationalInternal":{"tmp":"tmp/safe-array-concat_1.0.0_1682009767767_0.2196527115452167","host":"s3://npm-registry-packages"}},"1.0.1":{"name":"safe-array-concat","version":"1.0.1","keywords":["safe","Array","concat","push","isConcatSpreadable"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"safe-array-concat@1.0.1","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/ljharb/safe-array-concat#readme","bugs":{"url":"https://github.com/ljharb/safe-array-concat/issues"},"dist":{"shasum":"91686a63ce3adbea14d61b14c99572a8ff84754c","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/safe-array-concat/-/safe-array-concat-1.0.1.tgz","fileCount":9,"integrity":"sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==","signatures":[{"sig":"MEUCIQCFghi1YApwf2A4LJH4n0uqz4lNSByK17wjm4i1UDzo4wIgby9A7AM39i+Qvmnv/Wsrym2cQM+XRO3pdGF41V1ZXr0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":11857},"main":"index.js","engines":{"node":">=0.4"},"exports":{".":"./index.js","./package.json":"./package.json"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"994fa15fb2adf29f60308f17cad0c9aee9ac1255","scripts":{"lint":"eslint --ext=js,mjs .","test":"npm run tests-only","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","postlint":"evalmd README.md","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape test","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"},"repository":{"url":"git+https://github.com/ljharb/safe-array-concat.git","type":"git"},"_npmVersion":"9.8.0","description":"`Array.prototype.concat`, but made safe by ignoring Symbol.isConcatSpreadable","directories":{},"_nodeVersion":"20.5.1","dependencies":{"isarray":"^2.0.5","call-bind":"^1.0.2","has-symbols":"^1.0.3","get-intrinsic":"^1.2.1"},"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","eslint":"=8.8.0","evalmd":"^0.0.19","npmignore":"^0.3.0","in-publish":"^2.0.1","mock-property":"^1.0.0","auto-changelog":"^2.4.0","safe-publish-latest":"^2.0.0","@ljharb/eslint-config":"^21.1.0"},"_npmOperationalInternal":{"tmp":"tmp/safe-array-concat_1.0.1_1693960805478_0.8450296857893591","host":"s3://npm-registry-packages"}},"1.1.0":{"name":"safe-array-concat","version":"1.1.0","keywords":["safe","Array","concat","push","isConcatSpreadable"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"safe-array-concat@1.1.0","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/ljharb/safe-array-concat#readme","bugs":{"url":"https://github.com/ljharb/safe-array-concat/issues"},"dist":{"shasum":"8d0cae9cb806d6d1c06e08ab13d847293ebe0692","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/safe-array-concat/-/safe-array-concat-1.1.0.tgz","fileCount":14,"integrity":"sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==","signatures":[{"sig":"MEQCIEukS9dWju0r21sV/oDhhdYwt1rLVi+JKjvk0/ojAWPyAiBRZLhiZFtq3TQNUtSt/rDVJjRcTYAP03N3F1vOhFVD5Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18433},"main":"index.js","types":"./index.d.ts","engines":{"node":">=0.4"},"exports":{".":"./index.js","./package.json":"./package.json"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"4315d1bea4d8fd70d83a77453d55153de850be6f","scripts":{"tsc":"tsc -p .","emit":"npm run tsc -- --noEmit false --emitDeclarationOnly","lint":"eslint --ext=js,mjs .","test":"npm run tests-only","preemit":"rm -f *.ts *.ts.map test/*.ts test/*.ts.map","prelint":"npm run tsc","prepack":"npmignore --auto --commentLines=autogenerated && npm run emit","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","postlint":"evalmd README.md","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape test","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"},"repository":{"url":"git+https://github.com/ljharb/safe-array-concat.git","type":"git"},"_npmVersion":"10.2.4","description":"`Array.prototype.concat`, but made safe by ignoring Symbol.isConcatSpreadable","directories":{},"sideEffects":false,"_nodeVersion":"21.5.0","dependencies":{"isarray":"^2.0.5","call-bind":"^1.0.5","has-symbols":"^1.0.3","get-intrinsic":"^1.2.2"},"publishConfig":{"ignore":[".github/workflows","!*.d.ts","!*.d.ts.map"]},"_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.3","eslint":"=8.8.0","evalmd":"^0.0.19","npmignore":"^0.3.1","in-publish":"^2.0.1","typescript":"^5.4.0-dev.20240114","@types/tape":"^5.6.4","mock-property":"^1.0.3","@types/isarray":"^2.0.2","auto-changelog":"^2.4.0","@types/call-bind":"^1.0.5","@types/has-symbols":"^1.0.2","safe-publish-latest":"^2.0.0","set-function-length":"^1.2.0","@types/get-intrinsic":"^1.2.2","@types/mock-property":"^1.0.2","@ljharb/eslint-config":"^21.1.0"},"_npmOperationalInternal":{"tmp":"tmp/safe-array-concat_1.1.0_1705338946488_0.9037202284399293","host":"s3://npm-registry-packages"}},"1.1.1":{"name":"safe-array-concat","version":"1.1.1","keywords":["safe","Array","concat","push","isConcatSpreadable"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"safe-array-concat@1.1.1","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/ljharb/safe-array-concat#readme","bugs":{"url":"https://github.com/ljharb/safe-array-concat/issues"},"dist":{"shasum":"74b207310b41ade00d008dd9bfe4c387962f3a26","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/safe-array-concat/-/safe-array-concat-1.1.1.tgz","fileCount":11,"integrity":"sha512-a4i5sUH9QtYYwK3n+9LEumSTV3VMZwlH2xkf/MdMd1dGtFr7wjCbJi9RoKEgfNpX3utiIsNEhadCCqBTKOtaGQ==","signatures":[{"sig":"MEUCIBJPVCV2+UK4GnHle94hRCunqSjzIY2KYbFem54Nrg/LAiEA16Wklw+vK6wFSPUnNDOOCV2OjHEaE3En+mV9UvpzLn0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15879},"main":"index.js","types":"./index.d.ts","engines":{"node":">=0.4"},"exports":{".":"./index.js","./package.json":"./package.json"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"f3187ff3c03683e5b7c5547a872a104bc7494e33","scripts":{"tsc":"tsc -p .","lint":"eslint --ext=js,mjs .","test":"npm run tests-only","posttsc":"attw -P","prelint":"npm run tsc","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","postlint":"evalmd README.md","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape test","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"},"repository":{"url":"git+https://github.com/ljharb/safe-array-concat.git","type":"git"},"_npmVersion":"10.5.0","description":"`Array.prototype.concat`, but made safe by ignoring Symbol.isConcatSpreadable","directories":{},"sideEffects":false,"_nodeVersion":"21.7.0","dependencies":{"isarray":"^2.0.5","call-bind":"^1.0.7","has-symbols":"^1.0.3","get-intrinsic":"^1.2.4"},"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","eslint":"=8.8.0","evalmd":"^0.0.19","npmignore":"^0.3.1","in-publish":"^2.0.1","typescript":"next","@types/tape":"^5.6.4","mock-property":"^1.0.3","@types/isarray":"^2.0.2","auto-changelog":"^2.4.0","@ljharb/tsconfig":"^0.1.1","@types/call-bind":"^1.0.5","@types/has-symbols":"^1.0.2","safe-publish-latest":"^2.0.0","set-function-length":"^1.2.1","@types/get-intrinsic":"^1.2.2","@types/mock-property":"^1.0.2","@arethetypeswrong/cli":"^0.15.1","@ljharb/eslint-config":"^21.1.0"},"_npmOperationalInternal":{"tmp":"tmp/safe-array-concat_1.1.1_1710005848455_0.671207426157876","host":"s3://npm-registry-packages"}}},"name":"safe-array-concat","time":{"1.1.2":"2024-03-09T21:09:32.570Z","1.1.3":"2024-12-12T03:28:34.445Z","1.1.4":"2026-04-20T06:12:26.294Z","created":"2023-04-20T16:56:07.767Z","modified":"2026-04-27T13:34:22.474Z","1.0.0":"2023-04-20T16:56:07.967Z","1.0.1":"2023-09-06T00:40:05.687Z","1.1.0":"2024-01-15T17:15:46.648Z","1.1.1":"2024-03-09T17:37:28.598Z"},"readmeFilename":"README.md","homepage":"https://github.com/ljharb/safe-array-concat#readme"}