-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
47 lines (37 loc) · 786 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import {PassThrough} from 'node:stream';
export default function multicastStream(sourceStream) {
const consumers = new Set();
let isStarted = false;
const start = () => {
if (isStarted) {
return;
}
isStarted = true;
sourceStream.on('data', chunk => {
for (const consumer of consumers) {
consumer.write(chunk);
}
});
sourceStream.on('end', () => {
for (const consumer of consumers) {
consumer.end();
}
});
sourceStream.on('error', error => {
for (const consumer of consumers) {
consumer.destroy(error);
}
});
};
return () => {
const consumer = new PassThrough();
consumers.add(consumer);
consumer.on('close', () => {
consumers.delete(consumer);
});
if (!isStarted) {
start();
}
return consumer;
};
}