You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
![]() |
1 week ago | |
---|---|---|
.. | ||
.github | 1 week ago | |
node_modules/isarray | 1 week ago | |
test | 1 week ago | |
.eslintrc | 1 week ago | |
.nycrc | 1 week ago | |
CHANGELOG.md | 1 week ago | |
LICENSE | 1 week ago | |
README.md | 1 week ago | |
index.d.ts | 1 week ago | |
index.js | 1 week ago | |
package.json | 1 week ago | |
tsconfig.json | 1 week ago |
README.md
safe-push-apply 
Push an array of items into an array, while being robust against prototype modification.
Getting started
npm install --save safe-push-apply
Usage/Examples
var safePushApply = require('safe-push-apply');
var assert = require('assert');
var arr = [1, 2, 3];
var orig = Array.prototype[Symbol.iterator];
delete Array.prototype[Symbol.iterator];
assert.throws(() => {
try {
arr.push(...[3, 4, 5]);
} finally {
Array.prototype[Symbol.iterator] = orig;
}
}, 'array is not iterable anymore');
delete Array.prototype.push;
safePushApply(arr, [3, 4, 5]);
assert.deepEqual(arr, [1, 2, 3, 3, 4, 5]);
Tests
Simply clone the repo, npm install
, and run npm test