mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-22 20:39:17 +08:00
5 lines
219 B
TypeScript
5 lines
219 B
TypeScript
import Throttle = require('throttle');
|
|
|
|
process.stdin.pipe(new Throttle(100 * 1024)).pipe(process.stdout);
|
|
process.stdin.pipe(new Throttle({ bps: 100 * 1024, chunkSize: 100, highWaterMark: 500 })).pipe(process.stdout);
|