Lines Matching defs:function
10 function Stream(opts) {
16 Stream.prototype.pipe = function(dest, options) {
19 function ondata(chunk) {
27 function ondrain() {
43 function onend() {
51 function onclose() {
55 if (typeof dest.destroy === 'function') dest.destroy();
59 function onerror(er) {
70 function cleanup() {
96 function prependListener(emitter, event, fn) {
99 if (typeof emitter.prependListener === 'function')