MCPcopy
hub / github.com/plasma-umass/browsix / call

Function call

node/lib/util.js:834–839  ·  view source on GitHub ↗
(a, b, c)

Source from the content-addressed store, hash-verified

832 var callbackCalled = false;
833
834 function call(a, b, c) {
835 if (cb && !callbackCalled) {
836 cb(a, b, c);
837 callbackCalled = true;
838 }
839 }
840
841 readStream.addListener('data', function(chunk) {
842 if (writeStream.write(chunk) === false) readStream.pause();

Callers 1

util.jsFile · 0.85

Calls 1

cbFunction · 0.70

Tested by

no test coverage detected