DefinitelyTyped/types/throttle/throttle-tests.ts
2017-08-14 10:09:43 -07:00

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);