wallet-core/node_modules/arr-exclude
2017-05-28 00:40:43 +02:00
..
index.js add linting (and some initial fixes) 2017-05-28 00:40:43 +02:00
license add linting (and some initial fixes) 2017-05-28 00:40:43 +02:00
package.json add linting (and some initial fixes) 2017-05-28 00:40:43 +02:00
readme.md add linting (and some initial fixes) 2017-05-28 00:40:43 +02:00

arr-exclude Build Status

Exclude certain items from an array

Install

$ npm install --save arr-exclude

Usage

var arrExclude = require('arr-exclude');

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

License

MIT © Sindre Sorhus