mirror of
https://github.com/mathew-kurian/Scribe.js
synced 2025-04-24 22:34:58 +00:00
15 lines
288 B
JavaScript
15 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);
|
|
}
|
|
|
|
};
|
|
|
|
}());
|