CoolFace
Apppublic

strong-tie/inbound-calls

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
debug.js16 linesDownload Raw Back to follow-redirects
1var debug;2 3module.exports = function () {4  if (!debug) {5    try {6      /* eslint global-require: off */7      debug = require("debug")("follow-redirects");8    }9    catch (error) { /* */ }10    if (typeof debug !== "function") {11      debug = function () { /* */ };12    }13  }14  debug.apply(null, arguments);15};16