npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

@arr/filter.mutate

1.0.2

@lukeed

npmHomeRepoSnykSocket
Downloads:2273
$ npm install @arr/filter.mutate
DailyWeeklyMonthlyYearly

@arr/filter.mutate

Fastest Array.filter alternative --- mutates original array!

:exclamation: Unlike native, @arr/filter.mutate mutates the original array! Use @arr/filter for a non-mutating version.

Install

$ npm install --save @arr/filter.mutate

Usage

import filter from '@arr/filter.mutate';

const words = ['spray', 'limit', 'elite', 'exuberant', 'destruction', 'present'];

filter(words, str => str.length > 6);
//=> ['exuberant', 'destruction', 'present']

console.log(words);
//=> ['exuberant', 'destruction', 'present']

API

filter(arr, callback)

arr

Type: Array
The array to iterate upon.

callback(value[, index, array])

Type: Function
Function to test for each element, taking three arguments:

  • value (required) -- The current element being processed in the array.
  • index (optional) -- The index of the current element being processed in the array.
  • array (optional) -- The array filter.mutate was called upon.

License

MIT © Luke Edwards