Files
Web-Printing-Toolkit/node_modules/follow-redirects/debug.js
TheGreydiamond 7b45a854fe inital commit
2025-08-18 20:02:43 +02:00

16 lines
315 B
JavaScript

var debug;
module.exports = function () {
if (!debug) {
try {
/* eslint global-require: off */
debug = require("debug")("follow-redirects");
}
catch (error) { /* */ }
if (typeof debug !== "function") {
debug = function () { /* */ };
}
}
debug.apply(null, arguments);
};