2.0.0 • Published 3 years ago

arr-exclude v2.0.0

Weekly downloads
43,717
License
MIT
Repository
github
Last release
3 years ago

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