diff options
Diffstat (limited to 'textproto/mod.ts')
-rw-r--r-- | textproto/mod.ts | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/textproto/mod.ts b/textproto/mod.ts index 6c4e42e51..419a57b68 100644 --- a/textproto/mod.ts +++ b/textproto/mod.ts @@ -106,8 +106,10 @@ export class TextProtoReader { //let key = canonicalMIMEHeaderKey(kv.subarray(0, endKey)); let key = str(kv.subarray(0, endKey)); - // As per RFC 7230 field-name is a token, tokens consist of one or more chars. - // We could return a ProtocolError here, but better to be liberal in what we + // As per RFC 7230 field-name is a token, + // tokens consist of one or more chars. + // We could return a ProtocolError here, + // but better to be liberal in what we // accept, so if we get an empty key, skip it. if (key == "") { continue; |