JSPM

@writetome51/array-remove-between

1.0.2
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 8
  • Score
    100M100P100Q49481F
  • License MIT

Function removes chunk of adjacent items from the middle of the array

Package Exports

  • @writetome51/array-remove-between

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@writetome51/array-remove-between) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

removeBetween(numItemsToKeepAtEachEnd, array): void

Removes everything in array between numItemsToKeepAtEachEnd.
Example:

let arr = [1,2,3,4,5,6,7,8,9,10];
removeBetween(3, arr); // Keeps first 3 items and last 3 items.
// arr is now [1, 2, 3, 8, 9, 10]

let arr = ['t', 'h', 20, 100, true, false];
removeBetween(1, arr); // Keeps first item and last item.
// arr is now ['t', false]