Create an array with values that are present in the first input array but not additional ones
npm install array-differ> Create an array with values that are present in the first input array but not additional ones
```
$ npm install array-differ
`js
import arrayDiffer from 'array-differ';
arrayDiffer([2, 3, 4], [3, 50]);
//=> [2, 4]
`
Returns a new array.
#### input
Type: unknown[]
#### values
Type: unknown[]`
Arrays of values to exclude.
---