mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-08-25 08:08:00 +00:00
10 lines
177 B
JavaScript
10 lines
177 B
JavaScript
var debug;
|
|
try {
|
|
/* eslint global-require: off */
|
|
debug = require("debug")("follow-redirects");
|
|
}
|
|
catch (error) {
|
|
debug = function () { /* */ };
|
|
}
|
|
module.exports = debug;
|