Skip to content

Instantly share code, notes, and snippets.

View woolfi182's full-sized avatar
🏠
Working from home

Maksym Mosiura woolfi182

🏠
Working from home
View GitHub Profile
module.exports = function(database,fs){
return [
{
match: function(obj){
return true;
},
callback: function(obj, socket){
socket.write(JSON.stringify(obj)+'\n');
}
}