diff options
| author | jmoenig <jens@moenig.org> | 2014-11-20 15:16:12 +0100 |
|---|---|---|
| committer | jmoenig <jens@moenig.org> | 2014-11-20 15:16:12 +0100 |
| commit | ce93fe8da73738e67683fa9cbfe7741de62f5336 (patch) | |
| tree | bdc2f5acc8ae377786ae557cd0c1501bbbd9e9b2 /threads.js | |
| parent | 4768102b098281d4f2462d4c4b0fe8b5cf228ef6 (diff) | |
| download | snap-byow-ce93fe8da73738e67683fa9cbfe7741de62f5336.tar.gz snap-byow-ce93fe8da73738e67683fa9cbfe7741de62f5336.zip | |
fix ‘line’ option in ‘split’ block for Windows files
thanks, @brianharvey!
Diffstat (limited to 'threads.js')
| -rw-r--r-- | threads.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2126,7 +2126,7 @@ Process.prototype.reportTextSplit = function (string, delimiter) { str = (string || '').toString(); switch (this.inputOption(delimiter)) { case 'line': - del = '\n'; + del = '\r?\n'; break; case 'tab': del = '\t'; |
