/** * 数组去重 * @param arr */ export const setArray = (arr: Array) => { return new Set(arr); };