UNPKG

yuxuannnn_utils

Version:
8 lines (7 loc) 193 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.unique = void 0; const unique = (arr) => { return [...new Set(arr)]; }; exports.unique = unique;