react-code-dataset / recharts /src /state /reduxDevtoolsJsonStringifyReplacer.ts
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
273 Bytes
export function reduxDevtoolsJsonStringifyReplacer(_key: string, value: unknown) {
if (value instanceof HTMLElement) {
return `HTMLElement <${value.tagName} class="${value.className}">`;
}
if (value === window) {
return 'global.window';
}
return value;
}