市场夺宝奇兵
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
315 B

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