biofriction-wp-theme/node_modules/follow-redirects/debug.js

15 lines
268 B
JavaScript
Raw Permalink Normal View History

2021-10-26 14:18:09 +02: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);
};