migme-ferry
Version:
Ferry transports packets to and from fusion/fission
17 lines (13 loc) • 424 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = Debug;
var _config = require('../config/config');
function Debug() {
for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {
args[_key] = arguments[_key];
}
if (_config.debug) console.log.apply(console, args); // eslint-disable-line no-console
}
module.exports = exports['default'];