📄 unique.js
/home/palash/git/site/node_modules/fork-ts-checker-webpack-plugin/lib/utils/array/unique.js
Language: js • Lines: 6
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
function unique(array) {
    return Array.from(new Set(array));
}
exports.default = unique;