mirror of
https://github.com/vee1e/mitmproxy.git
synced 2026-09-01 18:27:18 +00:00
6 lines
169 B
JavaScript
6 lines
169 B
JavaScript
process.env.TZ = "UTC";
|
|
const err = console.error;
|
|
console.warn = console.error = function () {
|
|
err.apply(console, arguments);
|
|
throw new Error(arguments[0]);
|
|
};
|