UNPKG

pragmatic-fp-ts

Version:

Opinionated functional programming library with easy use in mind

8 lines (7 loc) 183 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.uniq = void 0; function uniq(coll) { return Array.from(new Set(coll)); } exports.uniq = uniq;