mirror of
https://github.com/EnixCoda/Gitako.git
synced 2026-03-11 08:54:44 +00:00
git-subtree-dir: packages/pjax git-subtree-split: 8abb21e1e9d899217b03c489c9b2d9ecd92074b5
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)
|
|
}
|
|
}
|
|
}
|