-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(@nf-team/core): 의미가 모호한 core 함수명 변경으로 인한 문서 업데이트
- Loading branch information
1 parent
cc1daa4
commit 3d495d8
Showing
43 changed files
with
115 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"docs": minor | ||
--- | ||
|
||
docs(@nf-team/core): 의미가 모호한 core 함수명 변경으로 인한 문서 업데이트 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@nf-team/core": major | ||
--- | ||
|
||
refactor(@nf-team/core): 의미가 모호한 core 유틸 함수명 변경 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Function: createNumberArray() | ||
|
||
> **createNumberArray**(`length`): `number`[] | ||
## Parameters | ||
|
||
• **length**: `number` | ||
|
||
## Returns | ||
|
||
`number`[] | ||
|
||
## Defined in | ||
|
||
[utils.ts:61](https://github.com/mbti-nf-team/frontend-libraries/blob/3916286534b50dbdcab9c2145adbaa464419b886/packages/core/src/utils.ts#L61) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Function: ensureArray() | ||
|
||
> **ensureArray**\<`T`\>(`value`?): `T`[] | ||
## Type Parameters | ||
|
||
• **T** | ||
|
||
## Parameters | ||
|
||
• **value?**: `T`[] | ||
|
||
## Returns | ||
|
||
`T`[] | ||
|
||
## Defined in | ||
|
||
[utils.ts:41](https://github.com/mbti-nf-team/frontend-libraries/blob/3916286534b50dbdcab9c2145adbaa464419b886/packages/core/src/utils.ts#L41) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Function: getNumberOrDefault() | ||
|
||
> **getNumberOrDefault**(`value`?, `defaultValue`?): `number` | ||
## Parameters | ||
|
||
• **value?**: `null` \| `number` | ||
|
||
• **defaultValue?**: `number` = `0` | ||
|
||
## Returns | ||
|
||
`number` | ||
|
||
## Defined in | ||
|
||
[utils.ts:26](https://github.com/mbti-nf-team/frontend-libraries/blob/3916286534b50dbdcab9c2145adbaa464419b886/packages/core/src/utils.ts#L26) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// @ts-check | ||
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */ | ||
const typedocSidebar = { items: [{"type":"category","label":"Functions","items":[{"type":"doc","id":"core/functions/checkEmpty","label":"checkEmpty"},{"type":"doc","id":"core/functions/checkNumber","label":"checkNumber"},{"type":"doc","id":"core/functions/emptyAThenB","label":"emptyAThenB"},{"type":"doc","id":"core/functions/generateArrayOfNumber","label":"generateArrayOfNumber"},{"type":"doc","id":"core/functions/isEmpty","label":"isEmpty"},{"type":"doc","id":"core/functions/removeNullable","label":"removeNullable"},{"type":"doc","id":"core/functions/trueOrFalse","label":"trueOrFalse"}]}]}; | ||
const typedocSidebar = { items: [{"type":"category","label":"Functions","items":[{"type":"doc","id":"core/functions/createNumberArray","label":"createNumberArray"},{"type":"doc","id":"core/functions/emptyAThenB","label":"emptyAThenB"},{"type":"doc","id":"core/functions/ensureArray","label":"ensureArray"},{"type":"doc","id":"core/functions/getNumberOrDefault","label":"getNumberOrDefault"},{"type":"doc","id":"core/functions/getStringOrDefault","label":"getStringOrDefault"},{"type":"doc","id":"core/functions/isEmpty","label":"isEmpty"},{"type":"doc","id":"core/functions/trueOrFalse","label":"trueOrFalse"}]}]}; | ||
module.exports = typedocSidebar.items; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,23 @@ | ||
# Function: fetchApi() | ||
|
||
> **fetchApi**\<`T`, `K`\>(`__namedParameters`): `Promise`\<`T`\> | ||
> **fetchApi**\<`T`, `K`, `B`\>(`__namedParameters`): `Promise`\<`T`\> | ||
## Type Parameters | ||
|
||
• **T** | ||
|
||
• **K** = `unknown` | ||
|
||
• **B** = `unknown` | ||
|
||
## Parameters | ||
|
||
• **\_\_namedParameters**: [`FetchApiRequest`](../interfaces/FetchApiRequest.md)\<`K`\> | ||
• **\_\_namedParameters**: [`FetchApiRequest`](../interfaces/FetchApiRequest.md)\<`K`, `B`\> | ||
|
||
## Returns | ||
|
||
`Promise`\<`T`\> | ||
|
||
## Defined in | ||
|
||
[packages/fetch/src/fetch.ts:28](https://github.com/mbti-nf-team/frontend-libraries/blob/08b9d43288f72c3d793bb8f598c64f689d769c2e/packages/fetch/src/fetch.ts#L28) | ||
[packages/fetch/src/fetch.ts:32](https://github.com/mbti-nf-team/frontend-libraries/blob/3916286534b50dbdcab9c2145adbaa464419b886/packages/fetch/src/fetch.ts#L32) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# @nf-team/fetch v1.1.0 | ||
# @nf-team/fetch v1.2.0 | ||
|
||
## Classes | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.