mirror of
https://github.com/lush2020/edgetunnel.git
synced 2026-03-22 01:22:21 +08:00
5 lines
134 B
JavaScript
5 lines
134 B
JavaScript
import { Readable } from 'stream';
|
|
const readableStream = new Readable();
|
|
readableStream.push('ping!');
|
|
readableStream.push('pong!');
|