mirror of
https://github.com/actions/toolkit.git
synced 2026-08-07 00:00:18 +02:00
4 lines
164 B
JavaScript
4 lines
164 B
JavaScript
//Default highWaterMark for readable stream buffers us 64K (2^16)
|
|
//so we go over that to get more than a buffer's worth
|
|
process.stdout.write('a\n'.repeat(2**24));
|