Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoid extra trailing whitespace in stdout mode
Not only does `console.log()` already print a newline after its output, but it prints a space between each of its arguments, so including `'\n'` as a second argument results in a trailing space, then a newline, then another newline. Excluding this extra `'\n'` results in just one newline after the data.
- Loading branch information