You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The "IPv4 parser" and the "application/x-www-form-urlencoded parser" both use the word split without defining the algorithm to do so. In particular, this leaves ambiguous the case where the delimiter does not occur in the string or byte sequence.
Infra defines many different types of splits, but it is likely that the "strictly split" algorithm is what is intended here.
One caveat, however, is that the "application/x-www-form-urlencoded parser" operates on bytes, rather than on code points. This might require some finagling.
The text was updated successfully, but these errors were encountered:
The "IPv4 parser" and the "
application/x-www-form-urlencoded
parser" both use the word split without defining the algorithm to do so. In particular, this leaves ambiguous the case where the delimiter does not occur in the string or byte sequence.Infra defines many different types of splits, but it is likely that the "strictly split" algorithm is what is intended here.
One caveat, however, is that the "
application/x-www-form-urlencoded
parser" operates on bytes, rather than on code points. This might require some finagling.The text was updated successfully, but these errors were encountered: