Skip to content
This repository was archived by the owner on Jan 6, 2024. It is now read-only.

Commit a458f0c

Browse files
authored
chore: fix typo (#103)
1 parent 0449435 commit a458f0c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/client/logic/format-state.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function getFuntionDetails(func: Function) {
1+
function getFunctionDetails(func: Function) {
22
let string = ''
33
let matches: RegExpMatchArray | null = null
44
try {
@@ -73,7 +73,7 @@ export function formatStateType(value: unknown): StateType {
7373
return {
7474
rawType: 'function',
7575
recursive: false,
76-
value: getFuntionDetails(value),
76+
value: getFunctionDetails(value),
7777
}
7878
}
7979
else if (typeof value === 'bigint') {

0 commit comments

Comments
 (0)