1 | ;
|
2 | Object.defineProperty(exports, "__esModule", { value: true });
|
3 | exports.unique = exports.toArray = void 0;
|
4 | function toArray(value) {
|
5 | return [].concat(value);
|
6 | }
|
7 | exports.toArray = toArray;
|
8 | function unique(value) {
|
9 | return [...new Set(value)];
|
10 | }
|
11 | exports.unique = unique;
|
12 | //# sourceMappingURL=array.js.map |
\ | No newline at end of file |