Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
safe-array-concat
Advanced tools
`Array.prototype.concat`, but made safe by ignoring Symbol.isConcatSpreadable
Array.prototype.concat
, but made safe by ignoring Symbol.isConcatSpreadable
npm install --save safe-array-concat
var safeConcat = require('safe-array-concat');
var assert = require('assert');
assert.deepEqual([].concat([1, 2], 3, [[4]]), [1, 2, 3, [4]], 'arrays spread as expected with normal concat');
assert.deepEqual(safeConcat([1, 2], 3, [[4]]), [1, 2, 3, [4]], 'arrays spread as expected with safe concat');
String.prototype[Symbol.isConcatSpreadable] = true;
assert.deepEqual([].concat('foo', Object('bar')), ['foo', 'b', 'a', 'r'], 'spreadable String objects are spread with normal concat!!!');
assert.deepEqual(safeConcat('foo', Object('bar')), ['foo', Object('bar')], 'spreadable String objects are not spread with safe concat');
Array.prototype[Symbol.isConcatSpreadable] = false;
assert.deepEqual([].concat([1, 2], 3, [[4]]), [[], [1, 2], 3, [[4]]], 'non-concat-spreadable arrays do not spread with normal concat!!!');
assert.deepEqual(safeConcat([1, 2], 3, [[4]]), [1, 2, 3, [4]], 'non-concat-spreadable arrays still spread with safe concat');
Simply clone the repo, npm install
, and run npm test
v1.1.3 - 2024-12-11
@arethetypeswrong/cli
, @ljharb/eslint-config
, @ljharb/tsconfig
, @types/get-intrinsic
, @types/tape
, auto-changelog
, mock-property
, tape
9452ca7
8166059
call-bind
, get-intrinsic
, has-symbols
d35014a
call-bound
directly 0bdddbd
aud
with npm audit
c62dae0
4860aae
FAQs
`Array.prototype.concat`, but made safe by ignoring Symbol.isConcatSpreadable
The npm package safe-array-concat receives a total of 16,903,893 weekly downloads. As such, safe-array-concat popularity was classified as popular.
We found that safe-array-concat demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.