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.

debug.js 268B

1234567891011121314
  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. debug = function () { /* */ };
  10. }
  11. }
  12. debug.apply(null, arguments);
  13. };