unique.js 169 Bytes Raw Blame History Permalink 1 2 3 4 5 6 "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function unique(array) { return Array.from(new Set(array)); } exports.default = unique;