No Description

without.js 275B

1234567
  1. import restArguments from './restArguments.js';
  2. import difference from './difference.js';
  3. // Return a version of the array that does not contain the specified value(s).
  4. export default restArguments(function(array, otherArrays) {
  5. return difference(array, otherArrays);
  6. });