Skip to content

Commit 344f706

Browse files
authoredAug 25, 2024
fix(kit): fix call context when stringify with replacer (#576)
1 parent 67c5365 commit 344f706

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎packages/devtools-kit/src/shared/transfer.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,8 @@ export function stringifyCircularAutoChunks(data: Record<string, unknown>, repla
123123
// no circular references, JSON.stringify can handle this
124124
result = arguments.length === 1
125125
? JSON.stringify(data)
126-
: JSON.stringify(data, (k, v) => replacer?.(k, v), space!)
126+
// @ts-expect-error skip type check
127+
: JSON.stringify(data, (k, v) => replacer?.(k, v)?.call(this), space!)
127128
}
128129
catch (e) {
129130
// handle circular references

0 commit comments

Comments
 (0)