wallet-core/node_modules/arr-exclude/readme.md
2017-05-28 00:40:43 +02:00

534 B

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