max_liu b7ab7c8514 chore: 更新node_modules依赖文件 2 weeks ago
..
.github b7ab7c8514 chore: 更新node_modules依赖文件 2 weeks ago
test b7ab7c8514 chore: 更新node_modules依赖文件 2 weeks ago
.eslintrc b7ab7c8514 chore: 更新node_modules依赖文件 2 weeks ago
.nycrc b7ab7c8514 chore: 更新node_modules依赖文件 2 weeks ago
CHANGELOG.md b7ab7c8514 chore: 更新node_modules依赖文件 2 weeks ago
LICENSE b7ab7c8514 chore: 更新node_modules依赖文件 2 weeks ago
README.md b7ab7c8514 chore: 更新node_modules依赖文件 2 weeks ago
index.d.ts b7ab7c8514 chore: 更新node_modules依赖文件 2 weeks ago
index.js b7ab7c8514 chore: 更新node_modules依赖文件 2 weeks ago
package.json b7ab7c8514 chore: 更新node_modules依赖文件 2 weeks ago
tsconfig.json b7ab7c8514 chore: 更新node_modules依赖文件 2 weeks ago

README.md

safe-push-apply Version Badge

github actions coverage License Downloads

npm badge

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