/opt/canhelp/node_modules/next/dist/esm/next-devtools/shared
NameSizeModeActions
console-error.js8060644editdlrm
console-error.js.map16250644editdlrm
deepmerge.js8470644editdlrm
deepmerge.js.map16470644editdlrm
devtools-config-schema.js7990644editdlrm
devtools-config-schema.js.map17050644editdlrm
forward-logs-shared.js14200644editdlrm
forward-logs-shared.js.map38180644editdlrm
hydration-error.js560644editdlrm
hydration-error.js.map3330644editdlrm
react-18-hydration-error.js19460644editdlrm
react-18-hydration-error.js.map33830644editdlrm
react-19-hydration-error.js27320644editdlrm
react-19-hydration-error.js.map46260644editdlrm
stack-frame.js48350644editdlrm
stack-frame.js.map83490644editdlrm
types.js460644editdlrm
types.js.map2160644editdlrm
version-staleness.js16600644editdlrm
version-staleness.js.map23020644editdlrm
webpack-module-path.js8230644editdlrm
webpack-module-path.js.map13830644editdlrm
Edit: /opt/canhelp/node_modules/next/dist/esm/next-devtools/shared/forward-logs-shared.js (1420B)
export const UNDEFINED_MARKER = '__next_tagged_undefined'; // Based on https://github.com/facebook/react/blob/28dc0776be2e1370fe217549d32aee2519f0cf05/packages/react-server/src/ReactFlightServer.js#L248 export function patchConsoleMethod(methodName, wrapper) { const descriptor = Object.getOwnPropertyDescriptor(console, methodName); if (descriptor && (descriptor.configurable || descriptor.writable) && typeof descriptor.value === 'function') { const originalMethod = descriptor.value; const originalName = Object.getOwnPropertyDescriptor(originalMethod, 'name'); const wrapperMethod = function() { for(var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++){ args[_key] = arguments[_key]; } wrapper(methodName, ...args); originalMethod.apply(this, args); }; if (originalName) { Object.defineProperty(wrapperMethod, 'name', originalName); } Object.defineProperty(console, methodName, { value: wrapperMethod }); return ()=>{ Object.defineProperty(console, methodName, { value: originalMethod, writable: descriptor.writable, configurable: descriptor.configurable }); }; } return ()=>{}; } //# sourceMappingURL=forward-logs-shared.js.map