2014-05-05 08:39:08 +02:00
|
|
|
module.exports = function() {
|
|
|
|
|
if (this.options.debug && console) {
|
|
|
|
|
if (typeof console.log === "function") {
|
2018-01-31 22:17:06 +00:00
|
|
|
console.log.apply(console, arguments)
|
2014-05-05 08:39:08 +02:00
|
|
|
}
|
2018-02-01 09:16:01 +00:00
|
|
|
// IE is weird
|
2014-05-05 08:39:08 +02:00
|
|
|
else if (console.log) {
|
2018-01-31 22:17:06 +00:00
|
|
|
console.log(arguments)
|
2014-05-05 08:39:08 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|