I have a page that loads a Javascript and contains this:
(function(f) {
function qb(a) {
var b = g.sockets[a];
b.onopen = b.onclose = b.onmessage = b.onerror = function() {};
for (var d = 0; d < b.events.length; ++d) U(b.events[d][1]);
b.events = null;
try {
b.close()
} catch (t) {}
g.sockets[a] = null
}
function tb(a) {
eval.call(null, a)
}
})
I would like to know how I call the tb function from the chrome console because I get the following error VM3784: 1 Uncaught ReferenceError: tb is not defined (...)