mirror of
https://github.com/EnixCoda/Gitako.git
synced 2026-03-11 08:54:44 +00:00
11 lines
252 B
JavaScript
11 lines
252 B
JavaScript
module.exports = function() {
|
|
if (this.options.debug && console) {
|
|
if (typeof console.log === "function") {
|
|
console.log.apply(console, arguments)
|
|
}
|
|
// IE is weird
|
|
else if (console.log) {
|
|
console.log(arguments)
|
|
}
|
|
}
|
|
}
|