File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -653,7 +653,8 @@ assertFalse(isQuotedPair("\\"));
653653### isQuotedString
654654
655655Whether the input is
656- [ quoted-string] ( https://www.rfc-editor.org/rfc/rfc9110.html#section-5.6.4-2 ) .
656+ [ quoted-string] ( https://www.rfc-editor.org/rfc/rfc9110.html#section-5.6.4-2 ) or
657+ not.
657658
658659``` ts
659660import { isQuotedString } from " https://deno.land/x/http_utils@$VERSION/quoted_string.ts" ;
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ export type QuotedString = `"${string}"`;
7272const reQuotedString =
7373 / ^ " (?: [ \t \x21 \x23 - \x5B \x5D - \x7E \x80 - \xFF ] | \\ [ \t \x21 - \x7E \x80 - \xFF ] ) * ?" $ / ;
7474
75- /** Whether the input is [quoted-string](https://www.rfc-editor.org/rfc/rfc9110.html#section-5.6.4-2).
75+ /** Whether the input is [quoted-string](https://www.rfc-editor.org/rfc/rfc9110.html#section-5.6.4-2) or not .
7676 *
7777 * @example
7878 * ```ts
You can’t perform that action at this time.
0 commit comments