包详细信息

arr-exclude

sindresorhus80.7kMIT不推荐使用3.0.0

Renamed to array-exclude.

Exclude certain items from an array

array, list, exclude, ignore

自述文件

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