summaryrefslogtreecommitdiff
path: root/threads.js
diff options
context:
space:
mode:
Diffstat (limited to 'threads.js')
-rw-r--r--threads.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/threads.js b/threads.js
index f210380..11b72dc 100644
--- a/threads.js
+++ b/threads.js
@@ -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';