mirror of
https://github.com/toss/es-toolkit.git
synced 2024-11-28 03:34:26 +03:00
docs(spread): fix doc (#536)
* fix(spread): fix doc * Update spread.md * Update spread.md --------- Co-authored-by: Sojin Park <raon0211@gmail.com>
This commit is contained in:
parent
72186bb8c9
commit
9bb1203b51
@ -49,7 +49,7 @@ console.log(spreadGreet(['Bob', 'Hi'])); // Output: Hi, Bob!
|
||||
`es-toolkit/compat` から `chunk` をインポートすると、Lodash と互換になります。
|
||||
|
||||
- `spread` は追加の数値パラメータ `argsIndex` を受け付け、引数配列が前の引数の中で位置する場所を指定します。
|
||||
- `argsIndex` が負の値または `NaN` の場合、デフォルトで `0` になります。小数の場合は最も近い整数に丸められます。
|
||||
- `argsIndex` が負の値または `NaN` の場合、デフォルトで `0` になります。小数の場合は最も近い整数に切り捨てられます。
|
||||
|
||||
```typescript
|
||||
import { spread } from 'es-toolkit/compat';
|
||||
|
@ -49,7 +49,7 @@ console.log(spreadGreet(['Bob', 'Hi'])); // Output: Hi, Bob!
|
||||
`es-toolkit/compat`에서 `spread`를 가져오면 lodash와 호환돼요.
|
||||
|
||||
- `spread`는 `argsIndex`라고 하는 숫자 인자를 추가로 받아요. 이 인자는 펼칠 인자 배열이 주어진 인덱스를 나타내요.
|
||||
- 만약 `argsIndex`이 음수이거나 `NaN`이라면, 기본값 `0`으로 취급돼요. 소수라면, 가까운 정수로 반올림돼요.
|
||||
- 만약 `argsIndex`이 음수이거나 `NaN`이라면, 기본값 `0`으로 취급돼요. 소수라면, 가까운 정수로 내림해요.
|
||||
|
||||
```typescript
|
||||
import { spread } from 'es-toolkit/compat';
|
||||
|
@ -49,7 +49,7 @@ console.log(spreadGreet(['Bob', 'Hi'])); // Output: Hi, Bob!
|
||||
Import `spread` from `es-toolkit/compat` for full compatibility with lodash.
|
||||
|
||||
- `spread` accepts an additional numeric parameter, `argsIndex`, which specifies the position at which the argument array is positioned among the preceding parameters.
|
||||
- If `argsIndex` is negative or `NaN`, it defaults to `0`. If it's a fractional number, it is rounded to the nearest integer.
|
||||
- If `argsIndex` is negative or `NaN`, it defaults to `0`. If it's a fractional number, it is rounded down to the nearest integer.
|
||||
|
||||
```typescript
|
||||
import { spread } from 'es-toolkit/compat';
|
||||
|
@ -49,7 +49,7 @@ console.log(spreadGreet(['Bob', 'Hi'])); // 输出: Hi, Bob!
|
||||
从 `es-toolkit/compat` 中导入 `spread` 以实现与 lodash 的完全兼容。
|
||||
|
||||
- `spread` 接受一个额外的数值参数 `argsIndex`,该参数指定了参数数组在前面参数中的位置。
|
||||
- 如果 `argsIndex` 为负数或 `NaN`,默认为 `0`。如果它是一个小数,则会四舍五入为最接近的整数。
|
||||
- 如果 `argsIndex` 为负数或 `NaN`,默认为 `0`。如果它是一个小数,则会向下取整为最接近的整数。
|
||||
|
||||
```typescript
|
||||
import { spread } from 'es-toolkit/compat';
|
||||
|
Loading…
Reference in New Issue
Block a user