UNPKG

rambdax

Version:

Extended version of Rambda - a lightweight, faster alternative to Ramda

14 lines (11 loc) 244 B
import { _Set } from './_internals/set.js' export function uniq(list){ const set = new _Set() const willReturn = [] list.forEach(item => { if (set.checkUniqueness(item)){ willReturn.push(item) } }) return willReturn }