Lines Matching refs:head
98 const head = streams[0];
102 isWritable(head) ||
103 isWritableStream(head) ||
104 isTransformStream(head)
117 writableObjectMode: !!head?.writableObjectMode,
124 if (isNodeStream(head)) {
126 if (head.write(chunk, encoding)) {
134 head.end();
138 head.on('drain', function() {
145 } else if (isWebStream(head)) {
146 const writable = isTransformStream(head) ? head.writable : head;