UNPKG

pragmatic-fp-ts

Version:

Opinionated functional programming library with easy use in mind

4 lines (3 loc) 83 B
export function uniq<A>(coll: A[]): A[] { return Array.from(new Set<A>(coll)); }