NPM Smell 🍑💨

trivial and outdated NPM packages

array-slice outdated npm logo

Reimplements the native Array.prototype.slice() method.

Weekly Downloads
3,708,771
Dependencies
0
Latest Release
7 years ago
This dependency re-creates a native JavaScript API. It is recommended to use the native API instead
Outdated
natively supported
since 11 years (chrome, firefox, safari, nodejs)

About

This dependency reimplents the native Array.prototype.slice() method. It is supported by all modern browsers and Node.js versions since about 11 years.

// Get a subarray of an array
const arr = ["a", "b", "c", "d", "e"];
const subarr = arr.slice(1, 3);
// ["b", "c"]