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

Made by Antonio Ramirez

array-exclude

3.0.0

@sindresorhus

npmHomeRepoSnykSocket
Downloads:2
$ npm install array-exclude
DailyWeeklyMonthlyYearly

array-exclude

Exclude certain items from an array

Install

npm install array-exclude

Usage

import arrayExclude from 'array-exclude';

arrayExclude(['a', 'b', 'c'], ['b']);
//=> ['a', 'c']

Related

  • arr-include - Include only certain items in an array