forked from mirrors/Scribe.js
16 lines
288 B
JavaScript
16 lines
288 B
JavaScript
|
(function () {
|
||
|
|
||
|
//By default, the module access global.console
|
||
|
//so it doesn't break dependencies logging
|
||
|
|
||
|
module.exports = {
|
||
|
|
||
|
saySomething : function (msg) {
|
||
|
msg = "Without new console - " + msg;
|
||
|
console.log(msg);
|
||
|
}
|
||
|
|
||
|
};
|
||
|
|
||
|
}());
|