mirror of
https://github.com/swc-project/swc.git
synced 2024-12-30 00:52:29 +03:00
bbaf619f63
swc_bundler: - [x] Fix wrapped esms. (denoland/deno#9307) - [x] Make test secure.
33 lines
923 B
TypeScript
33 lines
923 B
TypeScript
// Loaded from https://deno.land/x/ramda@v0.27.2/source/without.js
|
|
|
|
|
|
import _includes from './internal/_includes.js';
|
|
import _curry2 from './internal/_curry2.js';
|
|
import flip from './flip.js';
|
|
import reject from './reject.js';
|
|
|
|
|
|
/**
|
|
* Returns a new list without values in the first argument.
|
|
* [`R.equals`](#equals) is used to determine equality.
|
|
*
|
|
* Acts as a transducer if a transformer is given in list position.
|
|
*
|
|
* @func
|
|
* @memberOf R
|
|
* @since v0.19.0
|
|
* @category List
|
|
* @sig [a] -> [a] -> [a]
|
|
* @param {Array} list1 The values to be removed from `list2`.
|
|
* @param {Array} list2 The array to remove values from.
|
|
* @return {Array} The new array without values in `list1`.
|
|
* @see R.transduce, R.difference, R.remove
|
|
* @example
|
|
*
|
|
* R.without([1, 2], [1, 2, 1, 3, 4]); //=> [3, 4]
|
|
*/
|
|
var without = _curry2(function(xs, list) {
|
|
return reject(flip(_includes)(xs), list);
|
|
});
|
|
export default without;
|