n4auth/node_modules/follow-redirects/debug.js

15 lines
268 B
JavaScript
Raw Normal View History

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