$ npm install array.prototype.spliceAn ES spec-compliant Array.prototype.splice shim/polyfill/replacement that works as far down as ES3.
This package implements the es-shim API interface. It works in an ES3-supported environment and complies with the spec.
Because Array.prototype.splice depends on a receiver (the “this” value), the main export takes the array to operate on as the first argument.
Note: this list is not exhaustive.
deleteCount isn't defaulted to length - start until ES6undefinedvar splice = require('array.prototype.splice');
var assert = require('assert');
var a = [1, 1, 1];
assert.deepEqual(splice(a, 1, 2), [1, 1]);
assert.deepEqual(a, [1]);
var splice = require('array.prototype.splice');
var assert = require('assert');
/* when Array#splice is not present */
delete Array.prototype.splice;
var shimmed = splice.shim();
assert.equal(shimmed, splice.getPolyfill());
assert.equal(shimmed, Array.prototype.splice);
assert.deepEqual([1, 2, 3].splice(1, 2, 3), splice([1, 2, 3], 1, 2, 3));
var splice = require('array.prototype.splice');
var assert = require('assert');
/* when Array#splice is present */
var shimmed = splice.shim();
assert.equal(shimmed, Array.prototype.splice);
assert.deepEqual([1, 2, 3].splice(1, 2, 3), splice([1, 2, 3], 1, 2, 3));
Simply clone the repo, npm install, and run npm test