2014-05-05 08:39:08 +02:00
|
|
|
module.exports = function() {
|
|
|
|
|
if (this.options.debug && console) {
|
|
|
|
|
if (typeof console.log === "function") {
|
2019-03-03 01:37:45 -05:00
|
|
|
console.log.apply(console, arguments);
|
2014-05-05 08:39:08 +02:00
|
|
|
}
|
2018-02-02 09:52:44 -05:00
|
|
|
// IE is weird
|
2014-05-05 08:39:08 +02:00
|
|
|
else if (console.log) {
|
2019-03-03 01:37:45 -05:00
|
|
|
console.log(arguments);
|
2014-05-05 08:39:08 +02:00
|
|
|
}
|
|
|
|
|
}
|
2019-03-03 01:37:45 -05:00
|
|
|
};
|