blob: 33615b3dc9324a601dd714a88c2d786dad34a1b2 [file] [log] [blame]
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
}