kopia lustrzana https://github.com/c9/core
10 wiersze
255 B
JavaScript
10 wiersze
255 B
JavaScript
![]() |
module.exports = function(vfs, options, register) {
|
||
|
register(null, {
|
||
|
log: function (message, callback) {
|
||
|
callback = callback || function(){};
|
||
|
|
||
|
console.log(message);
|
||
|
callback();
|
||
|
}
|
||
|
})
|
||
|
}
|