ohctechv3/.svn/pristine/42/42e41336009febad983c2e1ad574f33d17088386.svn-base
2024-10-28 15:03:36 +05:30

16 lines
315 B
Plaintext

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);
};