ES spec-compliant `Array.prototype.slice` shim/polyfill/replacement that works as far down as ES3
npm install array.prototype.slice[![github actions][actions-image]][actions-url]
[![coverage][codecov-image]][codecov-url]
[![dependency status][deps-svg]][deps-url]
[![dev dependency status][dev-deps-svg]][dev-deps-url]
[![License][license-image]][license-url]
[![Downloads][downloads-image]][downloads-url]
[![npm badge][npm-badge-png]][package-url]
An ES spec-compliant Array.prototype.slice 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.slice 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.
- Safari 10 - 13
- Chrome 48+ (v8 bug)
- node 6+
``js
var slice = require('array.prototype.slice');
var assert = require('assert');
var a = [1, 2, 3];
assert.deepEqual(slice(a, 1, 2), [2]);
assert.deepEqual(slice(a, -2), [2, 3]);
`
`js`
var slice = require('array.prototype.slice');
var assert = require('assert');
/ when Array#slice is not present /
delete Array.prototype.slice;
var shimmed = slice.shim();
assert.equal(shimmed, slice.getPolyfill());
assert.equal(shimmed, Array.prototype.slice);
assert.deepEqual([1, 2, 3].slice(1, 2), slice([1, 2, 3], 1, 2));
`js`
var slice = require('array.prototype.slice');
var assert = require('assert');
/ when Array#slice is present /
var shimmed = slice.shim();
assert.equal(shimmed, Array.prototype.slice);
assert.deepEqual([1, 2, 3].slice(1, 2), slice([1, 2, 3], 1, 2));
, and run npm test`[package-url]: https://npmjs.org/package/array.prototype.slice
[npm-version-svg]: https://versionbadg.es/es-shims/Array.prototype.slice.svg
[deps-svg]: https://david-dm.org/es-shims/Array.prototype.slice.svg
[deps-url]: https://david-dm.org/es-shims/Array.prototype.slice
[dev-deps-svg]: https://david-dm.org/es-shims/Array.prototype.slice/dev-status.svg
[dev-deps-url]: https://david-dm.org/es-shims/Array.prototype.slice#info=devDependencies
[npm-badge-png]: https://nodei.co/npm/array.prototype.slice.png?downloads=true&stars=true
[license-image]: https://img.shields.io/npm/l/array.prototype.slice.svg
[license-url]: LICENSE
[downloads-image]: https://img.shields.io/npm/dm/array.prototype.slice.svg
[downloads-url]: https://npm-stat.com/charts.html?package=array.prototype.slice
[codecov-image]: https://codecov.io/gh/es-shims/Array.prototype.slice/branch/main/graphs/badge.svg
[codecov-url]: https://app.codecov.io/gh/es-shims/Array.prototype.slice/
[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/es-shims/Array.prototype.slice
[actions-url]: https://github.com/es-shims/Array.prototype.slice/actions