uniq

v0.9.6arrow_drop_down
v0.9.6
STATUS
Passing
DOWNLOADS
4
VISIBILITY
Public
PUBLISHED
5 years ago
SIZE
3 KB
Returns a new list containing only one copy of each element in the original list.
1 contributor
Install uniq as a package?
Copied
npm i @bit/justin-capalbo.ramda.uniq
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
uniq (
list:Array
) : Array

Returns a new list containing only one copy of each element in the original list. R.equals is used to determine equality.

Example
R.uniq([1, 1, 2, 1]); //=> [1, 2]
     R.uniq([1, '1']);     //=> [1, '1']
     R.uniq([[42], [42]]); //=> [[42]]
Argument
list: Array

The array to consider.

Returns
Array

The list of unique items.

Help and resources