hz-zhhq-web/node_modules/safe-push-apply
zzyuan 01c6571b37 前端提交5 2025-02-25 13:47:09 +08:00
..
.github 前端提交5 2025-02-25 13:47:09 +08:00
node_modules/isarray 前端提交5 2025-02-25 13:47:09 +08:00
test 前端提交5 2025-02-25 13:47:09 +08:00
.eslintrc 前端提交5 2025-02-25 13:47:09 +08:00
.nycrc 前端提交5 2025-02-25 13:47:09 +08:00
CHANGELOG.md 前端提交5 2025-02-25 13:47:09 +08:00
LICENSE 前端提交5 2025-02-25 13:47:09 +08:00
README.md 前端提交5 2025-02-25 13:47:09 +08:00
index.d.ts 前端提交5 2025-02-25 13:47:09 +08:00
index.js 前端提交5 2025-02-25 13:47:09 +08:00
package.json 前端提交5 2025-02-25 13:47:09 +08:00
tsconfig.json 前端提交5 2025-02-25 13:47:09 +08:00

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