catiline icon indicating copy to clipboard operation
catiline copied to clipboard

JavaScript library to take the pain out of web workers.

Results 13 catiline issues
Sort by recently updated
recently updated
newest added

``` javascript var p2; var port = cw(function(data,cb){ this.x = new MessageChannel(); this.on('mess',function(a){ this.x.port1.postMessage(a); }); cb(this.x.port2,[this.x.port2]); }); port.data(1).then(function(a){ console.log('yes'); p2=a; },function(a){ console.log(a); }); p2.onmessage=function(a){ console.log('msg ',a.data); } port.fire('mess','hello there') ```...

When an event is fired in a queued wormer it should say which worker fired it