without

v0.9.6arrow_drop_down
v0.9.6
STATUS
Passing
DOWNLOADS
2
VISIBILITY
Public
PUBLISHED
5 years ago
SIZE
3 KB
Returns a new list without values in the first argument.
1 contributor
Install without as a package?
Copied
npm i @bit/justin-capalbo.ramda.without
Set Bit as a scoped registryLearn more
npm config set '@bit:registry' https://node.bit.cloud
Component Example
React
React
Vue
Angular
React Native
Add dependency... help_outline
Just
import
any of the 1 million components
and packages in Bit or NPM to the example.
import Button from '@bit/grommet.grommet.button';
import Lodash from 'lodash';
toggle layout
No preview available
modifieddraft
chevron_left
chevron_right
without (
list1:Array,
list2:Array
) : Array

Returns a new list without values in the first argument. R.equals is used to determine equality.

Acts as a transducer if a transformer is given in list position.

Example
R.without([1, 2], [1, 2, 1, 3, 4]); //=> [3, 4]
Arguments
list1: Array

The values to be removed from list2.

list2: Array

The array to remove values from.

Returns
Array

The new array without values in `list1`.

Help and resources