Exploded & tested stuff #20

Merged
MoOx merged 33 commits from testling into master 2014-10-14 01:27:04 -05:00
Showing only changes of commit 0d6643cf7a - Show all commits

View File

@@ -0,0 +1,11 @@
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);
}
}
}