Skip to content

Commit

Permalink
Merge branch 'feat/unary' of github.com:D-Sketon/es-toolkit into feat…
Browse files Browse the repository at this point in the history
…/unary
  • Loading branch information
D-Sketon committed Dec 8, 2024
2 parents 80ecd80 + 8dba4dd commit 3e4b03e
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/ja/reference/compat/array/castArray.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function castArray<T>(value?: T | T[]): T[];

### パラメータ

- `value` (`T | readonly T[]`): 配列にキャストされる値。
- `value` (`T | T[]`): 配列にキャストされる値。

### 戻り値

Expand Down
2 changes: 1 addition & 1 deletion docs/ja/reference/compat/object/get.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ function get<T, P extends string, D = Get<T, P>>(
): Exclude<Get<T, P>, null | undefined> | D;

function get(object: unknown, path: PropertyKey, defaultValue?: unknown): any;
function get(object: unknown, path: PropertyKey | readonly PropertyKey[], defaultValue?: unknown): any;
function get(object: unknown, path: PropertyKey | PropertyKey[], defaultValue?: unknown): any;
```

### パラメータ
Expand Down
2 changes: 1 addition & 1 deletion docs/ja/reference/compat/object/property.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
## インターフェース

```typescript
function property(path: PropertyKey | readonly PropertyKey[]): (object: unknown) => any;
function property(path: PropertyKey | PropertyKey[]): (object: unknown) => any;
```

### パラメータ
Expand Down
4 changes: 2 additions & 2 deletions docs/ko/reference/compat/array/castArray.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
## 인터페이스

```typescript
function castArray<T>(value?: T | readonly T[]): T[];
function castArray<T>(value?: T | T[]): T[];
```

### 파라미터

- `value` (`T | readonly T[]`): 배열로 변환할 값.
- `value` (`T | T[]`): 배열로 변환할 값.

### 반환 값

Expand Down
2 changes: 1 addition & 1 deletion docs/ko/reference/compat/object/get.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ function get<T, P extends string, D = Get<T, P>>(
): Exclude<Get<T, P>, null | undefined> | D;

function get(object: unknown, path: PropertyKey, defaultValue?: unknown): any;
function get(object: unknown, path: PropertyKey | readonly PropertyKey[], defaultValue?: unknown): any;
function get(object: unknown, path: PropertyKey | PropertyKey[], defaultValue?: unknown): any;
```

### 파라미터
Expand Down
2 changes: 1 addition & 1 deletion docs/ko/reference/compat/object/property.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
## 인터페이스

```typescript
function property(path: PropertyKey | readonly PropertyKey[]): (object: unknown) => any;
function property(path: PropertyKey | PropertyKey[]): (object: unknown) => any;
```

### 파라미터
Expand Down

0 comments on commit 3e4b03e

Please sign in to comment.