arr-exclude

Exclude certain items from an array

MIT License

Downloads
129.6K
Stars
20
Committers
3

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