Skip to content

Commit

Permalink
docs: update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
haoziqaq committed Nov 12, 2024
1 parent 5064736 commit 2b73553
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions docs/.vitepress/items/array.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ export const arrayItems = [
{ text: 'chunk', link: '/array/chunk' },
{ text: 'uniq', link: '/array/uniq' },
{ text: 'uniqBy', link: '/array/uniq-by' },
{ text: 'difference', link: '/array/difference' },
{ text: 'differenceWith', link: '/array/difference-with' },
{ text: 'find', link: '/array/find' },
{ text: 'shuffle', link: '/array/shuffle' },
{ text: 'removeItem', link: '/array/remove-item' },
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# differenceWith

Creates an array of array values ​​that are not contained in other given arrays, and supports custom comparison functions.
Creates an `array` of array values ​​that are not contained in other given arrays, and supports custom comparison functions.

### Usage

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# differenceWith

创建一个不包含在其他给定数组中的数组值的数组,并支持自定义比较函数。
创建一个不包含在其他给定数组中的数组值的 `数组`,并支持自定义比较函数。

### 使用

Expand Down

0 comments on commit 2b73553

Please sign in to comment.