docs: Update wording in our compatibility docs

This commit is contained in:
raon0211 2024-07-19 00:12:40 +09:00
parent 93d3e6a192
commit 3642214a26
16 changed files with 22 additions and 14 deletions

View File

@ -1,7 +1,7 @@
# zipObjectDeep # zipObjectDeep
::: info ::: info
[lodash와 호환](../../../compatibility.md)되는 `es-toolkit/compat` 라이브러리에서 쓸 수 있어요. `es-toolkit/compat` 라이브러리에서 [lodash와 완전히 호환](../../../compatibility.md)돼요.
::: :::
두 배열을 하나의 객체로 결합해요. 첫 번째 배열은 프로퍼티 경로를 나타내고, 두 번째 배열은 값을 나타내요. [zipObject](../../array/zipObject.md)와 다르게, 프로퍼티로 `a.b` 와 같은 경로를 지정할 수 있어요. 두 배열을 하나의 객체로 결합해요. 첫 번째 배열은 프로퍼티 경로를 나타내고, 두 번째 배열은 값을 나타내요. [zipObject](../../array/zipObject.md)와 다르게, 프로퍼티로 `a.b` 와 같은 경로를 지정할 수 있어요.

View File

@ -1,7 +1,7 @@
# get # get
::: info ::: info
[lodash와 호환](../../../compatibility.md)되는 `es-toolkit/compat` 라이브러리에서 쓸 수 있어요. `es-toolkit/compat` 라이브러리에서 [lodash와 완전히 호환](../../../compatibility.md)돼요.
::: :::
객체에서 주어진 경로에 있는 값을 가져와요. 그 값이 `undefined` 라면, 기본값을 반환해요. 객체에서 주어진 경로에 있는 값을 가져와요. 그 값이 `undefined` 라면, 기본값을 반환해요.

View File

@ -1,7 +1,7 @@
# set # set
::: info ::: info
[lodash와 호환](../../../compatibility.md)되는 `es-toolkit/compat` 라이브러리에서 쓸 수 있어요. `es-toolkit/compat` 라이브러리에서 [lodash와 완전히 호환](../../../compatibility.md)돼요.
::: :::
지정된 경로에 주어진 값을 설정해요. 경로의 일부가 존재하지 않으면 생성됩니다. 지정된 경로에 주어진 값을 설정해요. 경로의 일부가 존재하지 않으면 생성됩니다.

View File

@ -1,7 +1,7 @@
# endsWith # endsWith
::: info ::: info
[lodash와 호환](../../../compatibility.md)되는 `es-toolkit/compat` 라이브러리에서 쓸 수 있어요. `es-toolkit/compat` 라이브러리에서 [lodash와 완전히 호환](../../../compatibility.md)돼요.
::: :::
문자열이 주어진 문자열로 끝나는지 확인해요. 검색을 마칠 인덱스를 지정할 수 있어요. 문자열이 주어진 문자열로 끝나는지 확인해요. 검색을 마칠 인덱스를 지정할 수 있어요.

View File

@ -1,7 +1,7 @@
# startsWith # startsWith
::: info ::: info
[lodash와 호환](../../../compatibility.md)되는 `es-toolkit/compat` 라이브러리에서 쓸 수 있어요. `es-toolkit/compat` 라이브러리에서 [lodash와 완전히 호환](../../../compatibility.md)돼요.
::: :::
문자열이 주어진 문자열로 시작하는지 확인해요. 검색을 시작할 인덱스를 지정할 수 있어요. 문자열이 주어진 문자열로 시작하는지 확인해요. 검색을 시작할 인덱스를 지정할 수 있어요.

View File

@ -1,7 +1,7 @@
# zipObjectDeep # zipObjectDeep
::: info ::: info
This is available in our [compatibility library](../../../compatibility.md), `es-toolkit/compat`. This is fully compatible with lodash in our [compatibility library](../../../compatibility.md), `es-toolkit/compat`.
::: :::
Creates a deeply nested object given arrays of paths and values. Creates a deeply nested object given arrays of paths and values.

View File

@ -1,7 +1,7 @@
# get # get
::: info ::: info
This is available in our [compatibility library](../../../compatibility.md), `es-toolkit/compat`. This is fully compatible with lodash in our [compatibility library](../../../compatibility.md), `es-toolkit/compat`.
::: :::
Retrieves the value at a given path from an object. If the resolved value is undefined, the defaultValue is returned instead. Retrieves the value at a given path from an object. If the resolved value is undefined, the defaultValue is returned instead.

View File

@ -1,7 +1,7 @@
# set # set
::: info ::: info
This is available in our [compatibility library](../../../compatibility.md), `es-toolkit/compat`. This is fully compatible with lodash in our [compatibility library](../../../compatibility.md), `es-toolkit/compat`.
::: :::
Sets the given value at the specified path of the object. If any part of the path does not exist, it will be created. Sets the given value at the specified path of the object. If any part of the path does not exist, it will be created.

View File

@ -1,7 +1,7 @@
# endsWith # endsWith
::: info ::: info
This is available in our [compatibility library](../../../compatibility.md), `es-toolkit/compat`. This is fully compatible with lodash in our [compatibility library](../../../compatibility.md), `es-toolkit/compat`.
::: :::
Checks if a string contains another string at the end of the string. Checks if a string contains another string at the end of the string.

View File

@ -1,7 +1,7 @@
# startsWith # startsWith
::: info ::: info
This is available in our [compatibility library](../../../compatibility.md), `es-toolkit/compat`. This is fully compatible with lodash in our [compatibility library](../../../compatibility.md), `es-toolkit/compat`.
::: :::
Checks if a string contains another string at the beginning of the string. Checks if a string contains another string at the beginning of the string.

View File

@ -1,5 +1,9 @@
# max # max
::: info
这与我们的[兼容库](../../../compatibility.md)中的lodash完全兼容`es-toolkit/compat`。
:::
找到数组中具有最大值的元素。 找到数组中具有最大值的元素。
如果列表为空,则返回 `undefined` 如果列表为空,则返回 `undefined`

View File

@ -1,5 +1,9 @@
# min # min
::: info
这与我们的[兼容库](../../../compatibility.md)中的lodash完全兼容`es-toolkit/compat`。
:::
找到数组中具有最小值的元素。 找到数组中具有最小值的元素。
如果列表为空,则返回 `undefined` 如果列表为空,则返回 `undefined`

View File

@ -1,7 +1,7 @@
# zipObjectDeep # zipObjectDeep
::: info ::: info
此功能在我们的[兼容性库](../../../compatibility.md)中可用`es-toolkit/compat`。 这与我们的[兼容库](../../../compatibility.md)中的lodash完全兼容`es-toolkit/compat`。
::: :::
给定路径和值的数组,创建一个深层嵌套的对象。 给定路径和值的数组,创建一个深层嵌套的对象。

View File

@ -1,7 +1,7 @@
# get # get
::: info ::: info
此功能在我们的[兼容性库](../../../compatibility.md)中可用`es-toolkit/compat`。 这与我们的[兼容库](../../../compatibility.md)中的lodash完全兼容`es-toolkit/compat`。
::: :::
从对象中获取给定路径的值。如果解析的值为 `undefined`,则返回 `defaultValue` 从对象中获取给定路径的值。如果解析的值为 `undefined`,则返回 `defaultValue`

View File

@ -1,7 +1,7 @@
# set # set
::: info ::: info
此功能在我们的[兼容性库](../../../compatibility.md)中可用`es-toolkit/compat`。 这与我们的[兼容库](../../../compatibility.md)中的lodash完全兼容`es-toolkit/compat`。
::: :::
在对象的指定路径设置给定值。如果路径的任何部分不存在,将会创建它。 在对象的指定路径设置给定值。如果路径的任何部分不存在,将会创建它。

View File

@ -1,7 +1,7 @@
# startsWith # startsWith
::: info ::: info
此功能在我们的[兼容性库](../../../compatibility.md)中可用`es-toolkit/compat`。 这与我们的[兼容库](../../../compatibility.md)中的lodash完全兼容`es-toolkit/compat`。
::: :::
检查字符串是否在其开头包含另一个字符串。 检查字符串是否在其开头包含另一个字符串。