12 lines
255 B
JavaScript
12 lines
255 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);
|
|
}
|
|
}
|
|
};
|