(data, target: keyof typeof replacers = 'internal')
| 188 | } |
| 189 | |
| 190 | export function stringify(data, target: keyof typeof replacers = 'internal') { |
| 191 | // Create a fresh cache for each serialization |
| 192 | encodeCache.clear() |
| 193 | return stringifyCircularAutoChunks(data, replacers[target]) |
| 194 | } |
| 195 | |
| 196 | function replacerForInternal(key) { |
| 197 | // @ts-expect-error meow |
no test coverage detected