Skip to main content

Ported from https://github.com/seriousManual/dedupe

dedupe

Build Status

removes duplicates from your array.

Usage

primitive types

import { dedupe } from 'https://github.com/Sab94/dedupe/blob/master/mod.ts'

var a = [1, 2, 2, 3]
var b = dedupe(a)
console.log(b)

//result: [1, 2, 3]

complex types

Here the string representation of the object is used for comparism. The mechanism is similar to JSON.stringifing but a bit more efficient. That means that {} is considered egal to {}.

import { dedupe } from 'https://github.com/Sab94/dedupe/blob/master/mod.ts'

var aa = [{a: 2}, {a: 1}, {a: 1}, {a: 1}]
var bb = dedupe(aa)
console.log(bb)

//result: [{a: 2}, {a: 1}]

complex types types with custom hasher

import { dedupe } from 'https://github.com/Sab94/dedupe/blob/master/mod.ts'

var aaa = [{a: 2, b: 1}, {a: 1, b: 2}, {a: 1, b: 3}, {a: 1, b: 4}]
var bbb = dedupe(aaa, value => value.a)
console.log(bbb)

//result: [{a: 2, b: 1}, {a: 1,b: 2}]