Update to v2.0.1.

This commit is contained in:
Martin Edenhofer 2015-12-28 13:29:34 +01:00
parent 8e58838a84
commit 348ebe20ba

View file

@ -1,6 +1,6 @@
// email-addresses.js - RFC 5322 email address parser // email-addresses.js - RFC 5322 email address parser
// v 2.0.0 // v 2.0.1
// //
// http://tools.ietf.org/html/rfc5322 // http://tools.ietf.org/html/rfc5322
// //
@ -297,7 +297,6 @@ function parse5322(opts) {
// 3.2.2. Folding White Space and Comments // 3.2.2. Folding White Space and Comments
// FWS = ([*WSP CRLF] 1*WSP) / obs-FWS // FWS = ([*WSP CRLF] 1*WSP) / obs-FWS
// obs-FWS = 1*WSP *(CRLF 1*WSP)
function fws() { function fws() {
return wrap('fws', or( return wrap('fws', or(
obsFws, obsFws,
@ -463,7 +462,7 @@ function parse5322(opts) {
// phrase = 1*word / obs-phrase // phrase = 1*word / obs-phrase
function phrase() { function phrase() {
return wrap('phrase', or(star(word, 1), obsPhrase)()); return wrap('phrase', or(obsPhrase, star(word, 1))());
} }
// 3.4. Address Specification // 3.4. Address Specification