dns-witch.net.eu.org/node_modules/array-differ
2025-07-05 18:19:59 +02:00
..
index 2.js 11ty + RIP DNS Witch EU.ORG service 2025-07-05 18:19:59 +02:00
index.js 11ty + RIP DNS Witch EU.ORG service 2025-07-05 18:19:59 +02:00
package 2.json 11ty + RIP DNS Witch EU.ORG service 2025-07-05 18:19:59 +02:00
package.json 11ty + RIP DNS Witch EU.ORG service 2025-07-05 18:19:59 +02:00
readme 2.md 11ty + RIP DNS Witch EU.ORG service 2025-07-05 18:19:59 +02:00
readme.md 11ty + RIP DNS Witch EU.ORG service 2025-07-05 18:19:59 +02:00

array-differ Build Status

Create an array with values that are present in the first input array but not additional ones

Install

$ npm install --save array-differ

Usage

var arrayDiffer = require('array-differ');

arrayDiffer([2, 3, 4], [3, 50]);
//=> [2, 4]

API

arrayDiffer(input, values, [values, ...])

Returns the new array.

input

Type: array

values

Type: array

Arrays of values to exclude.

License

MIT © Sindre Sorhus