Skip to content
On this page

Array

山奈提供了一些数组的操作方法,可以帮助您更好的操作数组。

filterUniqueByProperty

介绍

根据数组中对象的某个属性去重,将length大的数组保留,length小的数组去掉。

导入

js
import { filterUniqueByProperty } from 'galanga'

使用

输入的参数如下:

  • array[array]: 数组
  • property[string]: 对象的属性
js
array = filterUniqueByProperty(array, 'id')
js
array = galanga.filterUniqueByProperty(array, 'id')

arrayFilterUniqueItem

介绍

去除数组中完全相同的元素,然后返回新的数组。

导入

js
import { arrayFilterUniqueItem } from 'galanga'

使用

输入的参数如下:

  • array[array]: 数组
js
array = arrayFilterUniqueItem(array)
js
array = galanga.arrayFilterUniqueItem(array)

Released under Apache License 2.0 and package version 0.2.7