Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
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 22,300,297 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.