8b2a158caff5ff0b464206f3d1876caa2f91d9924edc9945b50a164920d21f414dd2030290a279bfa019ec03e49ae8c72ee42ac2df421b7ac83a8dab922925 315 B

123456789101112131415
  1. var debug;
  2. module.exports = function () {
  3. if (!debug) {
  4. try {
  5. /* eslint global-require: off */
  6. debug = require("debug")("follow-redirects");
  7. }
  8. catch (error) { /* */ }
  9. if (typeof debug !== "function") {
  10. debug = function () { /* */ };
  11. }
  12. }
  13. debug.apply(null, arguments);
  14. };