Some checks failed
CI / go (push) Waiting to run
CI / docker (push) Waiting to run
CI / lint-go (push) Waiting to run
CI / lint-docs (push) Waiting to run
CI / check-paperclip (push) Waiting to run
Deploy static site / Deploy to GitHub Pages (push) Has been cancelled
Deploy static site / Deploy via Docker to hatch.surf (push) Has been cancelled
Resolved conflicts by taking GitHub versions for: - .dockerignore, .gitignore, Dockerfile, README.md, docker-compose.yml Kept deploy.sh updated to: - Pull from GitHub (primary source) - Push to Gitea (push-mirror) - Build from site/ directory (GitHub structure) Co-Authored-By: Paperclip <noreply@paperclip.ing>
29 lines
1.2 KiB
JavaScript
29 lines
1.2 KiB
JavaScript
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(...args) {
|
|
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
|