unique.js 169 B

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