Skip to content

常用的数组操作

数组去重

typescript
const removeDuplicate = <T = any>(arr: T[]) => {
  return [...new Set(arr)]
}

MIT License.