File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,12 +8,12 @@ const encoder = new TextEncoder()
88 * @see https://mimesniff.spec.whatwg.org/#http-token-code-point
99 */
1010const HTTP_TOKEN_CODEPOINTS = / ^ [ ! # $ % & ' * + - . ^ _ | ~ A - Z a - z 0 - 9 ] + $ /
11- const HTTP_WHITESPACE_REGEX = / [ \u000A | \u000D | \u0009 | \u0020 ] / // eslint-disable-line
11+ const HTTP_WHITESPACE_REGEX = / [ \u000A \u000D \u0009 \u0020 ] / // eslint-disable-line
1212const ASCII_WHITESPACE_REPLACE_REGEX = / [ \u0009 \u000A \u000C \u000D \u0020 ] / g // eslint-disable-line
1313/**
1414 * @see https://mimesniff.spec.whatwg.org/#http-quoted-string-token-code-point
1515 */
16- const HTTP_QUOTED_STRING_TOKENS = / [ \u0009 | \u0020 - \u007E | \u0080 - \u00FF ] / // eslint-disable-line
16+ const HTTP_QUOTED_STRING_TOKENS = / [ \u0009 \u0020 - \u007E \u0080 - \u00FF ] / // eslint-disable-line
1717
1818// https://fetch.spec.whatwg.org/#data-url-processor
1919/** @param {URL } dataURL */
You can’t perform that action at this time.
0 commit comments