Creates an array of unique values
$ npm install tfk-unique-array
const makeUnique = require('tfk-unique-array')
const objekt = {
title: 'Ole'
}
const streng = 'En dag jeg gikk tur'
const liste = [1,2,3,4,5,1,2,3,4,1,23,4,5, objekt, streng, streng, objekt, objekt, objekt]
console.log(makeUnique(liste))
//=>[ 1, 2, 3, 4, 5, 23, { title: 'Ole' }, 'En dag jeg gikk tur' ]