学习?学个屁 06c63c15cc 初始化提交 10 bulan lalu
..
.github 06c63c15cc 初始化提交 10 bulan lalu
node_modules 06c63c15cc 初始化提交 10 bulan lalu
test 06c63c15cc 初始化提交 10 bulan lalu
.eslintrc 06c63c15cc 初始化提交 10 bulan lalu
.nycrc 06c63c15cc 初始化提交 10 bulan lalu
CHANGELOG.md 06c63c15cc 初始化提交 10 bulan lalu
LICENSE 06c63c15cc 初始化提交 10 bulan lalu
README.md 06c63c15cc 初始化提交 10 bulan lalu
index.d.ts 06c63c15cc 初始化提交 10 bulan lalu
index.js 06c63c15cc 初始化提交 10 bulan lalu
package.json 06c63c15cc 初始化提交 10 bulan lalu
tsconfig.json 06c63c15cc 初始化提交 10 bulan lalu

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