UNPKG

renovate

Version:

Automated dependency updates. Flexible so you don't need to be.

7 lines 263 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.uniq = uniq; function uniq(array, eql = (x, y) => x === y) { return array.filter((x, idx, arr) => arr.findIndex((y) => eql(x, y)) === idx); } //# sourceMappingURL=uniq.js.map