emit: function (channel, message) {
io.on('connection', function (socket) {
socket.emit(channel, message);
});
},
var users = {};
io.on('connection', function (socket) {
var user = new User(socket);
users[user.id] = user;
});
if (this[name] == null && typeOf(method) == 'function')
extend.call(this, name, function(item){
console.log("method", method); // добавить эту строчку
return method.apply(item, slice.call(arguments, 1));
});
if (this[name] == null && typeOf(method) == 'function')
extend.call(this, name, function(item){
return method.apply(item, slice.call(arguments, 1)); // здесь ошибка
});
Чем вам Netbeans так не угодил, что вы его к нормальным не причисляете?