Files

6 lines
201 B
JavaScript
Raw Permalink Normal View History

2021-06-03 09:31:48 -04:00
//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);