Denis 346b78aee1 first commit 2 ani în urmă
..
index.d.ts 346b78aee1 first commit 2 ani în urmă
index.js 346b78aee1 first commit 2 ani în urmă
license 346b78aee1 first commit 2 ani în urmă
package.json 346b78aee1 first commit 2 ani în urmă
readme.md 346b78aee1 first commit 2 ani în urmă

readme.md

array-differ Build Status

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

Install

$ npm install array-differ

Usage

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

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

API

arrayDiffer(input, ...values)

Returns a new array.

input

Type: unknown[]

values

Type: unknown[]

Arrays of values to exclude.

License

MIT © Sindre Sorhus