Comparing version 0.1.5 to 0.1.6
@@ -8,3 +8,3 @@ var EventEmitter = require('events').EventEmitter, | ||
RE_CRLF = /\r\n/g, | ||
RE_HDR = /^([^:]+):[ \t]?(.+)?$/, | ||
RE_HDR = /^([^:]+):[ \t]?([\x00-\xFF]+)?$/, | ||
MAX_HEADER_PAIRS = 2000, // from node's http.js | ||
@@ -40,3 +40,3 @@ MAX_HEADER_SIZE = 80 * 1024; // from node's http_parser | ||
self.buffer += data.toString('ascii', start, end); | ||
self.buffer += data.toString('binary', start, end); | ||
} | ||
@@ -43,0 +43,0 @@ if (isMatch) |
{ "name": "dicer", | ||
"version": "0.1.5", | ||
"version": "0.1.6", | ||
"author": "Brian White <mscdex@mscdex.net>", | ||
@@ -4,0 +4,0 @@ "description": "A very fast streaming multipart parser for node.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
40805