Comparing version 3.0.0 to 3.0.1
@@ -48,3 +48,3 @@ 'use strict'; | ||
if (groupstart < 0 && !this.line) { | ||
// store only <CR> as <LF> should be on the positive side | ||
// store only <CR> as <LF> should be on the positive side | ||
this.line = Buffer.allocUnsafe(1); | ||
@@ -71,3 +71,3 @@ this.line[0] = 0x0D; | ||
let start = pos; | ||
let start = Math.max(pos, 0); | ||
pos = ++i; | ||
@@ -74,0 +74,0 @@ |
{ | ||
"name": "mailsplit", | ||
"version": "3.0.0", | ||
"version": "3.0.1", | ||
"description": "Split email messages into an object stream", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
39602