mirror of
https://github.com/actions/toolkit
synced 2025-05-08 16:17:40 +00:00

* Add test for large stdline output * Format/Lint * Update stdlineoutput.js * Update stdlineoutput.js
5 lines
201 B
JavaScript
5 lines
201 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
|
|
const os = require('os')
|
|
|
|
process.stdout.write('a'.repeat(2**16 + 1) + os.EOL);
|