Last active
September 1, 2020 12:07
-
-
Save zored/be7481c7b450685f45ec812c14bbd87c to your computer and use it in GitHub Desktop.
Deno 16k output limit
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
await Deno.stdout.write(new TextEncoder().encode('v'.repeat(20000))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
deno run \ | |
https://gist.githubusercontent.com/zored/be7481c7b450685f45ec812c14bbd87c/raw/71e74bd6cd9f01a6ca17f73a1b5afe772e1f692b/sample.ts \ | |
> v.txt | |
wc -c v.txt | |
# expected: 20000 | |
# actual: 16384 | |
rm v.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment