Skip to content

sindresorhus/arr-exclude

Repository files navigation

arr-exclude

Exclude certain items from an array

Install

$ npm install arr-exclude

Usage

import arrayExclude from 'arr-exclude';

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

Related