Files
web-hosts/domains/coppertone.tech/audit-reports/security-audit/input-validation-20251123-104211.txt
2025-12-26 13:38:04 +01:00

1657 lines
316 KiB
Plaintext
Raw Permalink Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Input Validation Audit - 20251123-104211
== JSON Decoding (check for validation after) ==
/home/administrator/projects/coppertone.tech/backend/functions/payment-service/main.go:1040: err := json.Unmarshal(event.Data.Raw, &paymentIntent)
/home/administrator/projects/coppertone.tech/backend/functions/payment-service/main.go-1041- if err != nil {
/home/administrator/projects/coppertone.tech/backend/functions/payment-service/main.go-1042- log.Printf("Error parsing webhook JSON: %v", err)
/home/administrator/projects/coppertone.tech/backend/functions/payment-service/main.go-1043- http.Error(w, "Invalid event data", http.StatusBadRequest)
/home/administrator/projects/coppertone.tech/backend/functions/payment-service/main.go-1044- return
/home/administrator/projects/coppertone.tech/backend/functions/payment-service/main.go-1045- }
--
/home/administrator/projects/coppertone.tech/backend/functions/payment-service/main.go:1090: err := json.Unmarshal(event.Data.Raw, &paymentIntent)
/home/administrator/projects/coppertone.tech/backend/functions/payment-service/main.go-1091- if err != nil {
/home/administrator/projects/coppertone.tech/backend/functions/payment-service/main.go-1092- log.Printf("Error parsing webhook JSON: %v", err)
/home/administrator/projects/coppertone.tech/backend/functions/payment-service/main.go-1093- http.Error(w, "Invalid event data", http.StatusBadRequest)
/home/administrator/projects/coppertone.tech/backend/functions/payment-service/main.go-1094- return
/home/administrator/projects/coppertone.tech/backend/functions/payment-service/main.go-1095- }
--
/home/administrator/projects/coppertone.tech/backend/functions/payment-service/main.go:1112: err := json.Unmarshal(event.Data.Raw, &charge)
/home/administrator/projects/coppertone.tech/backend/functions/payment-service/main.go-1113- if err != nil {
/home/administrator/projects/coppertone.tech/backend/functions/payment-service/main.go-1114- log.Printf("Error parsing webhook JSON: %v", err)
/home/administrator/projects/coppertone.tech/backend/functions/payment-service/main.go-1115- http.Error(w, "Invalid event data", http.StatusBadRequest)
/home/administrator/projects/coppertone.tech/backend/functions/payment-service/main.go-1116- return
/home/administrator/projects/coppertone.tech/backend/functions/payment-service/main.go-1117- }
== Input Sanitization ==
/home/administrator/projects/coppertone.tech/frontend/src/lib/sanitize.ts:8: * Sanitize HTML content for safe rendering with v-html
/home/administrator/projects/coppertone.tech/frontend/src/lib/sanitize.ts:11:export function sanitizeHtml(dirty: string): string {
/home/administrator/projects/coppertone.tech/frontend/src/lib/sanitize.ts:12: return DOMPurify.sanitize(dirty, {
/home/administrator/projects/coppertone.tech/frontend/src/lib/sanitize.ts:53: * Sanitize HTML for markdown content (more permissive)
/home/administrator/projects/coppertone.tech/frontend/src/lib/sanitize.ts:56:export function sanitizeMarkdown(dirty: string): string {
/home/administrator/projects/coppertone.tech/frontend/src/lib/sanitize.ts:57: return DOMPurify.sanitize(dirty, {
/home/administrator/projects/coppertone.tech/frontend/src/lib/sanitize.ts:92:DOMPurify.addHook('afterSanitizeAttributes', (node) => {
/home/administrator/projects/coppertone.tech/frontend/node_modules/rxjs/src/internal/Subscriber.ts:41: protected destination: Subscriber<any> | Observer<any>; // this `any` is the escape hatch to erase extra type param (e.g. R)
/home/administrator/projects/coppertone.tech/frontend/node_modules/rxjs/src/internal/observable/bindCallbackInternals.ts:80: // as there's nothing else to do. Just return to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@csstools/css-parser-algorithms/dist/index.d.ts:239: * This is the parsed and unescaped name of the function.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@csstools/css-tokenizer/dist/index.d.ts:207: UnexpectedEOFInEscapedCodePoint: string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/@csstools/css-tokenizer/dist/index.d.ts:209: InvalidEscapeSequenceInURL: string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/@csstools/css-tokenizer/dist/index.d.ts:210: InvalidEscapeSequenceAfterBackslash: string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/@csstools/css-tokenizer/dist/index.d.ts:265: * These values are unescaped, unquoted, converted to numbers, etc.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@csstools/css-tokenizer/dist/index.d.ts:275: * The unescaped at-keyword name without the leading `@`.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@csstools/css-tokenizer/dist/index.d.ts:325: * The unescaped unit name.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@csstools/css-tokenizer/dist/index.d.ts:345: * The unescaped function name without the trailing `(`.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@csstools/css-tokenizer/dist/index.d.ts:353: * The unescaped hash value without the leading `#`.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@csstools/css-tokenizer/dist/index.d.ts:365: * The unescaped ident value.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@csstools/css-tokenizer/dist/index.d.ts:442: * The unescaped string value without the leading and trailing quotes.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@csstools/css-tokenizer/dist/index.d.ts:584: * The unescaped URL value without the leading `url(` and trailing `)`.
/home/administrator/projects/coppertone.tech/frontend/node_modules/globals/index.d.ts:21: readonly 'escape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/globals/index.d.ts:65: readonly 'unescape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/globals/index.d.ts:83: readonly 'escape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/globals/index.d.ts:109: readonly 'unescape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/globals/index.d.ts:126: readonly 'escape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/globals/index.d.ts:167: readonly 'unescape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/globals/index.d.ts:187: readonly 'escape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/globals/index.d.ts:229: readonly 'unescape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/globals/index.d.ts:252: readonly 'escape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/globals/index.d.ts:295: readonly 'unescape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/globals/index.d.ts:319: readonly 'escape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/globals/index.d.ts:363: readonly 'unescape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/ts-api-utils/lib/index.d.ts:200: * An `Identifier` with an `escapedText` value of `"const"`.
/home/administrator/projects/coppertone.tech/frontend/node_modules/ts-api-utils/lib/index.d.ts:204: escapedText: "const" & ts.__String;
/home/administrator/projects/coppertone.tech/frontend/node_modules/ts-api-utils/lib/index.d.ts:2070: * getPropertyOfType(type, property.getEscapedName());
/home/administrator/projects/coppertone.tech/frontend/node_modules/ts-api-utils/lib/index.d.ts:2825: * if (isPropertyReadonlyInType(type, property.getEscapedName(), typeChecker)) {
/home/administrator/projects/coppertone.tech/frontend/node_modules/wrap-ansi/index.d.ts:27:@param string - String with ANSI escape codes. Like one styled by [`chalk`](https://github.com/chalk/chalk). Newline characters will be normalized to `\n`.
/home/administrator/projects/coppertone.tech/frontend/node_modules/wrap-ansi/node_modules/string-width/index.d.ts:13:Some Unicode characters are [fullwidth](https://en.wikipedia.org/wiki/Halfwidth_and_fullwidth_forms) and use double the normal width. [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) are stripped and doesn't affect the width.
/home/administrator/projects/coppertone.tech/frontend/node_modules/wrap-ansi/node_modules/strip-ansi/index.d.ts:2:Strip [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) from a string.
/home/administrator/projects/coppertone.tech/frontend/node_modules/wrap-ansi/node_modules/ansi-regex/index.d.ts:3: Match only the first ANSI escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/wrap-ansi/node_modules/ansi-regex/index.d.ts:11:Regular expression for matching ANSI escape codes.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vitest/mocker/dist/node.d.ts:573: /** It is null when the template literal is tagged and the text has an invalid escape (e.g. - tag`\unicode and \u{55}`) */
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vitest/pretty-format/dist/index.d.ts:47: escapeRegex?: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vitest/pretty-format/dist/index.d.ts:48: escapeString?: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vitest/pretty-format/dist/index.d.ts:64: escapeRegex: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vitest/pretty-format/dist/index.d.ts:65: escapeString: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/string-width-cjs/index.d.ts:5: Some Unicode characters are [fullwidth](https://en.wikipedia.org/wiki/Halfwidth_and_fullwidth_forms) and use double the normal width. [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) are stripped and doesn't affect the width.
/home/administrator/projects/coppertone.tech/frontend/node_modules/string-width/index.d.ts:5: Some Unicode characters are [fullwidth](https://en.wikipedia.org/wiki/Halfwidth_and_fullwidth_forms) and use double the normal width. [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) are stripped and doesn't affect the width.
/home/administrator/projects/coppertone.tech/frontend/node_modules/dayjs/esm/index.d.ts:274: * To escape characters, wrap them in square brackets (e.g. [MM]).
/home/administrator/projects/coppertone.tech/frontend/node_modules/dayjs/esm/index.d.ts:277: * dayjs('2019-01-25').format('[YYYYescape] YYYY-MM-DDTHH:mm:ssZ[Z]')// 'YYYYescape 2019-01-25T00:00:00-02:00Z'
/home/administrator/projects/coppertone.tech/frontend/node_modules/dayjs/index.d.ts:274: * To escape characters, wrap them in square brackets (e.g. [MM]).
/home/administrator/projects/coppertone.tech/frontend/node_modules/dayjs/index.d.ts:277: * dayjs('2019-01-25').format('[YYYYescape] YYYY-MM-DDTHH:mm:ssZ[Z]')// 'YYYYescape 2019-01-25T00:00:00-02:00Z'
/home/administrator/projects/coppertone.tech/frontend/node_modules/ansi-escapes/index.d.ts:4:declare namespace ansiEscapes {
/home/administrator/projects/coppertone.tech/frontend/node_modules/ansi-escapes/index.d.ts:64:declare const ansiEscapes: {
/home/administrator/projects/coppertone.tech/frontend/node_modules/ansi-escapes/index.d.ts:221: image(buffer: Buffer, options?: ansiEscapes.ImageOptions): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/ansi-escapes/index.d.ts:225: [Inform iTerm2](https://www.iterm2.com/documentation-escape-codes.html) of the current directory to help semantic history and enable [Cmd-clicking relative paths](https://coderwall.com/p/b7e82q/quickly-open-files-in-iterm-with-cmd-click).
/home/administrator/projects/coppertone.tech/frontend/node_modules/ansi-escapes/index.d.ts:236: See the [iTerm Proprietary Escape Codes documentation](https://iterm2.com/documentation-escape-codes.html) for more information.
/home/administrator/projects/coppertone.tech/frontend/node_modules/ansi-escapes/index.d.ts:239: @returns An escape code which will create an annotation when printed in iTerm2.
/home/administrator/projects/coppertone.tech/frontend/node_modules/ansi-escapes/index.d.ts:241: annotation(message: string, options?: ansiEscapes.AnnotationOptions): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/ansi-escapes/index.d.ts:245: default: typeof ansiEscapes;
/home/administrator/projects/coppertone.tech/frontend/node_modules/ansi-escapes/index.d.ts:248:export = ansiEscapes;
/home/administrator/projects/coppertone.tech/frontend/node_modules/ansi-escapes/node_modules/type-fest/source/union-to-intersection.d.ts:10:type Union = {the(): void} | {great(arg: string): void} | {escape: boolean};
/home/administrator/projects/coppertone.tech/frontend/node_modules/ansi-escapes/node_modules/type-fest/source/union-to-intersection.d.ts:13://=> {the(): void; great(arg: string): void; escape: boolean};
/home/administrator/projects/coppertone.tech/frontend/node_modules/uri-js/dist/esnext/uri.d.ts:58:export declare function escapeComponent(str: string, options?: URIOptions): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/uri-js/dist/esnext/uri.d.ts:59:export declare function unescapeComponent(str: string, options?: URIOptions): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/uri-js/dist/es5/uri.all.d.ts:58:export declare function escapeComponent(str: string, options?: URIOptions): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/uri-js/dist/es5/uri.all.d.ts:59:export declare function unescapeComponent(str: string, options?: URIOptions): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/uri-js/dist/es5/uri.all.min.d.ts:58:export declare function escapeComponent(str: string, options?: URIOptions): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/uri-js/dist/es5/uri.all.min.d.ts:59:export declare function unescapeComponent(str: string, options?: URIOptions): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/word-wrap/index.d.ts:30: * An escape function to run on each line after splitting them.
/home/administrator/projects/coppertone.tech/frontend/node_modules/word-wrap/index.d.ts:33: escape?: (str: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/postcss-selector-parser/postcss-selector-parser.d.ts:179: * this allows the escaped value to be specified directly, allowing illegal characters to be
/home/administrator/projects/coppertone.tech/frontend/node_modules/postcss-selector-parser/postcss-selector-parser.d.ts:182: * @param value the unescaped value of the property
/home/administrator/projects/coppertone.tech/frontend/node_modules/postcss-selector-parser/postcss-selector-parser.d.ts:183: * @param valueEscaped optional. the escaped value of the property.
/home/administrator/projects/coppertone.tech/frontend/node_modules/postcss-selector-parser/postcss-selector-parser.d.ts:185: setPropertyAndEscape(name: string, value: any, valueEscaped: string): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/postcss-selector-parser/postcss-selector-parser.d.ts:189: * to the unescaped value.
/home/administrator/projects/coppertone.tech/frontend/node_modules/postcss-selector-parser/postcss-selector-parser.d.ts:191: * @param value The value that is both escaped and unescaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/postcss-selector-parser/postcss-selector-parser.d.ts:193: setPropertyWithoutEscape(name: string, value: any): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/postcss-selector-parser/postcss-selector-parser.d.ts:197: * by specifying the escaped value. By specifying the escaped value,
/home/administrator/projects/coppertone.tech/frontend/node_modules/postcss-selector-parser/postcss-selector-parser.d.ts:200: * @param {any} value the unescaped value of the property
/home/administrator/projects/coppertone.tech/frontend/node_modules/postcss-selector-parser/postcss-selector-parser.d.ts:201: * @param {string} valueEscaped optional. the escaped value of the property.
/home/administrator/projects/coppertone.tech/frontend/node_modules/postcss-selector-parser/postcss-selector-parser.d.ts:203: appendToPropertyAndEscape(name: string, value: any, valueEscaped: string): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/postcss-selector-parser/postcss-selector-parser.d.ts:420: /** The value of the attribute with quotes and escapes. */
/home/administrator/projects/coppertone.tech/frontend/node_modules/postcss-selector-parser/postcss-selector-parser.d.ts:454: * Set the unescaped value with the specified quotation options. The value
/home/administrator/projects/coppertone.tech/frontend/node_modules/postcss-selector-parser/postcss-selector-parser.d.ts:456: * be interpreted as part of the value and escaped accordingly.
/home/administrator/projects/coppertone.tech/frontend/node_modules/postcss-selector-parser/postcss-selector-parser.d.ts:464: * mark will be picked that minimizes the number of escapes.
/home/administrator/projects/coppertone.tech/frontend/node_modules/fast-glob/out/index.d.ts:29: function escapePath(source: string): PatternInternal;
/home/administrator/projects/coppertone.tech/frontend/node_modules/fast-glob/out/index.d.ts:32: function escapePath(source: string): PatternInternal;
/home/administrator/projects/coppertone.tech/frontend/node_modules/fast-glob/out/index.d.ts:36: function escapePath(source: string): PatternInternal;
/home/administrator/projects/coppertone.tech/frontend/node_modules/fast-glob/out/utils/path.d.ts:8:export declare const escape: typeof escapeWindowsPath;
/home/administrator/projects/coppertone.tech/frontend/node_modules/fast-glob/out/utils/path.d.ts:9:export declare function escapeWindowsPath(pattern: Pattern): Pattern;
/home/administrator/projects/coppertone.tech/frontend/node_modules/fast-glob/out/utils/path.d.ts:10:export declare function escapePosixPath(pattern: Pattern): Pattern;
/home/administrator/projects/coppertone.tech/frontend/node_modules/@eslint-community/regexpp/index.d.ts:95: | EscapeCharacterSet;
/home/administrator/projects/coppertone.tech/frontend/node_modules/@eslint-community/regexpp/index.d.ts:100: | EscapeCharacterSet
/home/administrator/projects/coppertone.tech/frontend/node_modules/@eslint-community/regexpp/index.d.ts:292: | EscapeCharacterSet
/home/administrator/projects/coppertone.tech/frontend/node_modules/@eslint-community/regexpp/index.d.ts:304: * The character class escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@eslint-community/regexpp/index.d.ts:307: export interface EscapeCharacterSet extends NodeBase {
/home/administrator/projects/coppertone.tech/frontend/node_modules/@eslint-community/regexpp/index.d.ts:319: * The unicode property escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@eslint-community/regexpp/index.d.ts:345: /** StringsUnicodePropertyCharacterSet is Unicode property escape with property of strings. */
/home/administrator/projects/coppertone.tech/frontend/node_modules/@eslint-community/regexpp/index.d.ts:376: | EscapeCharacterSet
/home/administrator/projects/coppertone.tech/frontend/node_modules/@eslint-community/regexpp/index.d.ts:417: * This includes escape sequences which mean a character.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@eslint-community/regexpp/index.d.ts:519: * and Unicode Property Escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@eslint-community/regexpp/index.d.ts:520: * - `2019`, `2020`, and `2021` added more valid Unicode Property Escapes.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@eslint-community/regexpp/index.d.ts:522: * - `2023` added more valid Unicode Property Escapes.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@eslint-community/regexpp/index.d.ts:608: * and Unicode Property Escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@eslint-community/regexpp/index.d.ts:609: * - `2019`, `2020`, and `2021` added more valid Unicode Property Escapes.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@eslint-community/regexpp/index.d.ts:611: * - `2023` added more valid Unicode Property Escapes.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@eslint-community/regexpp/index.d.ts:860: * A function that is called when the validator found a character set escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@eslint-community/regexpp/index.d.ts:866: onEscapeCharacterSet?: (
/home/administrator/projects/coppertone.tech/frontend/node_modules/@eslint-community/regexpp/index.d.ts:873: * A function that is called when the validator found a Unicode proerty escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@eslint-community/eslint-utils/index.d.ts:152: escaped?: boolean | undefined;
/home/administrator/projects/coppertone.tech/frontend/node_modules/rollup/dist/rollup.d.ts:832: sanitizeFileName?: boolean | ((fileName: string) => string) | undefined;
/home/administrator/projects/coppertone.tech/frontend/node_modules/rollup/dist/rollup.d.ts:888: sanitizeFileName: (fileName: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@typescript-eslint+utils@8.47.0_eslint@9.39.1_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/PatternMatcher.d.ts:39: * The class to find a pattern in strings as handling escape sequences.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@typescript-eslint+utils@8.47.0_eslint@9.39.1_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/PatternMatcher.d.ts:40: * It ignores the found pattern if it's escaped with `\`.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@typescript-eslint+utils@8.47.0_eslint@9.39.1_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/PatternMatcher.d.ts:45: escaped?: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+markdown-it@14.1.2/node_modules/@types/markdown-it/dist/index.cjs.d.ts:649: unescapeMd(str: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+markdown-it@14.1.2/node_modules/@types/markdown-it/dist/index.cjs.d.ts:651: unescapeAll(str: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+markdown-it@14.1.2/node_modules/@types/markdown-it/dist/index.cjs.d.ts:657: escapeHtml(str: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+markdown-it@14.1.2/node_modules/@types/markdown-it/dist/index.cjs.d.ts:688: escapeRE(str: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+markdown-it@14.1.2/node_modules/@types/markdown-it/dist/index.cjs.d.ts:718: * if `ok`, it's the unescaped title
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+markdown-it@14.1.2/node_modules/@types/markdown-it/dist/index.cjs.d.ts:764: * That's not safe! You may need external sanitizer to protect output from XSS.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+markdown-it@14.1.2/node_modules/@types/markdown-it/dist/index.cjs.d.ts:815: * Highlighter `function (str, lang, attrs)` should return escaped HTML. It can
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+markdown-it@14.1.2/node_modules/@types/markdown-it/dist/index.cjs.d.ts:816: * also return empty string if the source was not changed and should be escaped
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+markdown-it@14.1.2/node_modules/@types/markdown-it/dist/index.cjs.d.ts:1229: * return '<pre class="hljs"><code>' + md.utils.escapeHtml(str) + '</code></pre>';
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/uri-js@4.4.1/node_modules/uri-js/dist/esnext/uri.d.ts:58:export declare function escapeComponent(str: string, options?: URIOptions): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/uri-js@4.4.1/node_modules/uri-js/dist/esnext/uri.d.ts:59:export declare function unescapeComponent(str: string, options?: URIOptions): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/uri-js@4.4.1/node_modules/uri-js/dist/es5/uri.all.d.ts:58:export declare function escapeComponent(str: string, options?: URIOptions): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/uri-js@4.4.1/node_modules/uri-js/dist/es5/uri.all.d.ts:59:export declare function unescapeComponent(str: string, options?: URIOptions): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/uri-js@4.4.1/node_modules/uri-js/dist/es5/uri.all.min.d.ts:58:export declare function escapeComponent(str: string, options?: URIOptions): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/uri-js@4.4.1/node_modules/uri-js/dist/es5/uri.all.min.d.ts:59:export declare function unescapeComponent(str: string, options?: URIOptions): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/globals@14.0.0/node_modules/globals/index.d.ts:21: readonly 'escape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/globals@14.0.0/node_modules/globals/index.d.ts:65: readonly 'unescape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/globals@14.0.0/node_modules/globals/index.d.ts:83: readonly 'escape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/globals@14.0.0/node_modules/globals/index.d.ts:109: readonly 'unescape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/globals@14.0.0/node_modules/globals/index.d.ts:126: readonly 'escape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/globals@14.0.0/node_modules/globals/index.d.ts:167: readonly 'unescape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/globals@14.0.0/node_modules/globals/index.d.ts:187: readonly 'escape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/globals@14.0.0/node_modules/globals/index.d.ts:229: readonly 'unescape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/globals@14.0.0/node_modules/globals/index.d.ts:252: readonly 'escape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/globals@14.0.0/node_modules/globals/index.d.ts:295: readonly 'unescape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/globals@14.0.0/node_modules/globals/index.d.ts:319: readonly 'escape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/globals@14.0.0/node_modules/globals/index.d.ts:363: readonly 'unescape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts:4551: * The **`CDATASection`** interface represents a CDATA section that can be used within XML to include extended portions of unescaped text.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts:37579: * The **`CSS.escape()`** static method returns a string containing the escaped string passed as parameter, mostly for use as part of a CSS selector.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts:37581: * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/escape_static)
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts:37583: function escape(ident: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts:87: * Computes a new string in which certain characters have been replaced by a hexadecimal escape sequence.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts:91:declare function escape(string: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts:94: * Computes a new string in which hexadecimal escape sequences are replaced with the character that it represents.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts:98:declare function unescape(string: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts:122: * properties. Proxy objects are commonly used to log property accesses, validate, format, or sanitize inputs.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/typescript.d.ts:3403: private static readonly filenameEscapeRegexp;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/typescript.d.ts:3404: private static escapeFilenameForRegex;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/typescript.d.ts:4465: * Prefer to use `id.unescapedText`. (Note: This is available only in services, not internally to the TypeScript compiler.)
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/typescript.d.ts:4468: readonly escapedText: __String;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/typescript.d.ts:4501: readonly escapedText: __String;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/typescript.d.ts:5004: hasExtendedUnicodeEscape?: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/typescript.d.ts:5187: readonly escapedText: __String & "defer";
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/typescript.d.ts:6538: escapedName: __String;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/typescript.d.ts:6548: getEscapedName(): __String;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/typescript.d.ts:6576: * This represents a string whose leading underscore have been escaped by adding extra leading underscores.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/typescript.d.ts:6585: __escapedIdentifier: void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/typescript.d.ts:6588: __escapedIdentifier: void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/typescript.d.ts:6592: type ReadonlyUnderscoreEscapedMap<T> = ReadonlyMap<__String, T>;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/typescript.d.ts:6594: type UnderscoreEscapedMap<T> = Map<__String, T>;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/typescript.d.ts:6690: escapedName: __String;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/typescript.d.ts:8526: hasUnicodeEscape(): boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/typescript.d.ts:8527: hasExtendedUnicodeEscape(): boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/typescript.d.ts:8642: function escapeLeadingUnderscores(identifier: string): __String;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/typescript.d.ts:8644: * Remove extra underscore from escaped identifier text content.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/typescript.d.ts:8646: * @param identifier The escaped identifier text.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/typescript.d.ts:8647: * @returns The unescaped identifier text.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/typescript.d.ts:8649: function unescapeLeadingUnderscores(identifier: __String): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/ansi-escapes@4.3.2/node_modules/ansi-escapes/index.d.ts:4:declare namespace ansiEscapes {
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/ansi-escapes@4.3.2/node_modules/ansi-escapes/index.d.ts:64:declare const ansiEscapes: {
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/ansi-escapes@4.3.2/node_modules/ansi-escapes/index.d.ts:221: image(buffer: Buffer, options?: ansiEscapes.ImageOptions): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/ansi-escapes@4.3.2/node_modules/ansi-escapes/index.d.ts:225: [Inform iTerm2](https://www.iterm2.com/documentation-escape-codes.html) of the current directory to help semantic history and enable [Cmd-clicking relative paths](https://coderwall.com/p/b7e82q/quickly-open-files-in-iterm-with-cmd-click).
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/ansi-escapes@4.3.2/node_modules/ansi-escapes/index.d.ts:236: See the [iTerm Proprietary Escape Codes documentation](https://iterm2.com/documentation-escape-codes.html) for more information.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/ansi-escapes@4.3.2/node_modules/ansi-escapes/index.d.ts:239: @returns An escape code which will create an annotation when printed in iTerm2.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/ansi-escapes@4.3.2/node_modules/ansi-escapes/index.d.ts:241: annotation(message: string, options?: ansiEscapes.AnnotationOptions): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/ansi-escapes@4.3.2/node_modules/ansi-escapes/index.d.ts:245: default: typeof ansiEscapes;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/ansi-escapes@4.3.2/node_modules/ansi-escapes/index.d.ts:248:export = ansiEscapes;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/strip-ansi@7.1.2/node_modules/strip-ansi/index.d.ts:2:Strip [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) from a string.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/escape-string-regexp@4.0.0/node_modules/escape-string-regexp/index.d.ts:2:Escape RegExp special characters.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/escape-string-regexp@4.0.0/node_modules/escape-string-regexp/index.d.ts:4:You can also use this to escape a string that is inserted into the middle of a regex, for example, into a character class.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/escape-string-regexp@4.0.0/node_modules/escape-string-regexp/index.d.ts:8:import escapeStringRegexp = require('escape-string-regexp');
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/escape-string-regexp@4.0.0/node_modules/escape-string-regexp/index.d.ts:10:const escapedString = escapeStringRegexp('How much $ for a 🦄?');
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/escape-string-regexp@4.0.0/node_modules/escape-string-regexp/index.d.ts:13:new RegExp(escapedString);
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/escape-string-regexp@4.0.0/node_modules/escape-string-regexp/index.d.ts:16:declare const escapeStringRegexp: (string: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/escape-string-regexp@4.0.0/node_modules/escape-string-regexp/index.d.ts:18:export = escapeStringRegexp;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/pretty-format@29.7.0/node_modules/pretty-format/build/index.d.ts:41: escapeRegex: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/pretty-format@29.7.0/node_modules/pretty-format/build/index.d.ts:42: escapeString: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/pretty-format@29.7.0/node_modules/pretty-format/build/index.d.ts:57: escapeRegex: false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/pretty-format@29.7.0/node_modules/pretty-format/build/index.d.ts:58: escapeString: true;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@4.5.0/node_modules/entities/lib/esm/index.d.ts:12: * XML will be escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@4.5.0/node_modules/entities/lib/esm/index.d.ts:18: * be escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@4.5.0/node_modules/entities/lib/esm/index.d.ts:27: * Encode all characters that have to be escaped in HTML attributes,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@4.5.0/node_modules/entities/lib/esm/index.d.ts:32: * Encode all characters that have to be escaped in HTML text,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@4.5.0/node_modules/entities/lib/esm/index.d.ts:93:export { encodeXML, escape, escapeUTF8, escapeAttribute, escapeText, } from "./escape.js";
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@4.5.0/node_modules/entities/lib/esm/escape.d.ts:15: * Have a look at `escapeUTF8` if you want a more concise output at the expense
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@4.5.0/node_modules/entities/lib/esm/escape.d.ts:18: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@4.5.0/node_modules/entities/lib/esm/escape.d.ts:20:export declare const escape: typeof encodeXML;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@4.5.0/node_modules/entities/lib/esm/escape.d.ts:26: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@4.5.0/node_modules/entities/lib/esm/escape.d.ts:28:export declare const escapeUTF8: (data: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@4.5.0/node_modules/entities/lib/esm/escape.d.ts:30: * Encodes all characters that have to be escaped in HTML attributes,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@4.5.0/node_modules/entities/lib/esm/escape.d.ts:33: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@4.5.0/node_modules/entities/lib/esm/escape.d.ts:35:export declare const escapeAttribute: (data: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@4.5.0/node_modules/entities/lib/esm/escape.d.ts:37: * Encodes all characters that have to be escaped in HTML text,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@4.5.0/node_modules/entities/lib/esm/escape.d.ts:40: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@4.5.0/node_modules/entities/lib/esm/escape.d.ts:42:export declare const escapeText: (data: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@4.5.0/node_modules/entities/lib/esm/escape.d.ts:43://# sourceMappingURL=escape.d.ts.map
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@4.5.0/node_modules/entities/lib/index.d.ts:12: * XML will be escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@4.5.0/node_modules/entities/lib/index.d.ts:18: * be escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@4.5.0/node_modules/entities/lib/index.d.ts:27: * Encode all characters that have to be escaped in HTML attributes,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@4.5.0/node_modules/entities/lib/index.d.ts:32: * Encode all characters that have to be escaped in HTML text,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@4.5.0/node_modules/entities/lib/index.d.ts:93:export { encodeXML, escape, escapeUTF8, escapeAttribute, escapeText, } from "./escape.js";
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@4.5.0/node_modules/entities/lib/escape.d.ts:15: * Have a look at `escapeUTF8` if you want a more concise output at the expense
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@4.5.0/node_modules/entities/lib/escape.d.ts:18: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@4.5.0/node_modules/entities/lib/escape.d.ts:20:export declare const escape: typeof encodeXML;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@4.5.0/node_modules/entities/lib/escape.d.ts:26: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@4.5.0/node_modules/entities/lib/escape.d.ts:28:export declare const escapeUTF8: (data: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@4.5.0/node_modules/entities/lib/escape.d.ts:30: * Encodes all characters that have to be escaped in HTML attributes,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@4.5.0/node_modules/entities/lib/escape.d.ts:33: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@4.5.0/node_modules/entities/lib/escape.d.ts:35:export declare const escapeAttribute: (data: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@4.5.0/node_modules/entities/lib/escape.d.ts:37: * Encodes all characters that have to be escaped in HTML text,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@4.5.0/node_modules/entities/lib/escape.d.ts:40: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@4.5.0/node_modules/entities/lib/escape.d.ts:42:export declare const escapeText: (data: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@4.5.0/node_modules/entities/lib/escape.d.ts:43://# sourceMappingURL=escape.d.ts.map
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@8.0.0/node_modules/parse5/dist/tokenizer/index.d.ts:190: protected _stateScriptDataEscapeStart(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@8.0.0/node_modules/parse5/dist/tokenizer/index.d.ts:191: protected _stateScriptDataEscapeStartDash(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@8.0.0/node_modules/parse5/dist/tokenizer/index.d.ts:192: protected _stateScriptDataEscaped(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@8.0.0/node_modules/parse5/dist/tokenizer/index.d.ts:193: protected _stateScriptDataEscapedDash(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@8.0.0/node_modules/parse5/dist/tokenizer/index.d.ts:194: protected _stateScriptDataEscapedDashDash(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@8.0.0/node_modules/parse5/dist/tokenizer/index.d.ts:195: protected _stateScriptDataEscapedLessThanSign(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@8.0.0/node_modules/parse5/dist/tokenizer/index.d.ts:196: protected _stateScriptDataEscapedEndTagOpen(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@8.0.0/node_modules/parse5/dist/tokenizer/index.d.ts:197: protected _stateScriptDataEscapedEndTagName(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@8.0.0/node_modules/parse5/dist/tokenizer/index.d.ts:198: protected _stateScriptDataDoubleEscapeStart(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@8.0.0/node_modules/parse5/dist/tokenizer/index.d.ts:199: protected _stateScriptDataDoubleEscaped(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@8.0.0/node_modules/parse5/dist/tokenizer/index.d.ts:200: protected _stateScriptDataDoubleEscapedDash(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@8.0.0/node_modules/parse5/dist/tokenizer/index.d.ts:201: protected _stateScriptDataDoubleEscapedDashDash(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@8.0.0/node_modules/parse5/dist/tokenizer/index.d.ts:202: protected _stateScriptDataDoubleEscapedLessThanSign(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@8.0.0/node_modules/parse5/dist/tokenizer/index.d.ts:203: protected _stateScriptDataDoubleEscapeEnd(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@8.0.0/node_modules/parse5/dist/serializer/index.d.ts:12: * to `true`, `noscript` element content will not be escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@8.0.0/node_modules/parse5/dist/common/html.d.ts:289:export declare function hasUnescapedText(tn: string, scriptingEnabled: boolean): boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@multiformats+multiaddr@13.0.1/node_modules/@multiformats/multiaddr/src/registry.ts:39: * necessary, unescaping any escaped values
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@multiformats+multiaddr@13.0.1/node_modules/@multiformats/multiaddr/src/registry.ts:44: * To encode the multiaddr as a string, escape any necessary values
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@multiformats+multiaddr@13.0.1/node_modules/@multiformats/multiaddr/dist/src/registry.d.ts:26: * necessary, unescaping any escaped values
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@multiformats+multiaddr@13.0.1/node_modules/@multiformats/multiaddr/dist/src/registry.d.ts:30: * To encode the multiaddr as a string, escape any necessary values
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/index.d.ts:221: Use a [Select/Set Graphic Rendition](https://en.wikipedia.org/wiki/ANSI_escape_code#SGR_parameters) (SGR) [color code number](https://en.wikipedia.org/wiki/ANSI_escape_code#3/4_bit) to set text color.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/index.d.ts:229: Use a [8-bit unsigned number](https://en.wikipedia.org/wiki/ANSI_escape_code#8-bit) to set text color.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/index.d.ts:282: Use a [Select/Set Graphic Rendition](https://en.wikipedia.org/wiki/ANSI_escape_code#SGR_parameters) (SGR) [color code number](https://en.wikipedia.org/wiki/ANSI_escape_code#3/4_bit) to set background color.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/index.d.ts:291: Use a [8-bit unsigned number](https://en.wikipedia.org/wiki/ANSI_escape_code#8-bit) to set background color.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/cypress-automation.d.ts:16: 'Escape'
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/chai/index.d.ts:977: * [] and . in property names can be escaped using double backslashes.Asserts that haystack includes needle.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/chai/index.d.ts:980: * [] and . in property names can be escaped using double backslashes.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/chai/index.d.ts:992: * [] and . in property names can be escaped using double backslashes.Asserts that haystack includes needle.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/chai/index.d.ts:995: * [] and . in property names can be escaped using double backslashes.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/chai/index.d.ts:1007: * [] and . in property names can be escaped using double backslashes.Asserts that haystack includes needle.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/chai/index.d.ts:1010: * [] and . in property names can be escaped using double backslashes.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/chai/index.d.ts:1022: * [] and . in property names can be escaped using double backslashes.Asserts that haystack includes needle.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/chai/index.d.ts:1025: * [] and . in property names can be escaped using double backslashes.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/jquery/JQueryStatic.d.ts:661: * Escapes any character that has a special meaning in a CSS selector.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/jquery/JQueryStatic.d.ts:662: * @param selector A string containing a selector expression to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/jquery/JQueryStatic.d.ts:663: * @see \`{@link https://api.jquery.com/jQuery.escapeSelector/ }\`
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/jquery/JQueryStatic.d.ts:665: * @example ````Escape an ID containing a hash.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/jquery/JQueryStatic.d.ts:667:$.escapeSelector( "#target" ); // "\#target"
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/jquery/JQueryStatic.d.ts:671:$( "div" ).find( "." + $.escapeSelector( ".box" ) );
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/jquery/JQueryStatic.d.ts:674: escapeSelector(selector: JQuery.Selector): JQuery.Selector;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/jquery/JQuery.d.ts:11378: * @example ````Add text to the paragraph (notice the bold tag is escaped).
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/jquery/misc.d.ts:123: * A function to be used to handle the raw response data of XMLHttpRequest. This is a pre-filtering function to sanitize the response. You should return the sanitized data. The function accepts two arguments: The raw data returned from the server and the 'dataType' parameter.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/fp/escapeRegExp.d.ts:1:import { escapeRegExp } from "../fp";
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/fp/escapeRegExp.d.ts:2:export = escapeRegExp;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/fp/escape.d.ts:1:import { escape } from "../fp";
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/fp/escape.d.ts:2:export = escape;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/fp/unescape.d.ts:1:import { unescape } from "../fp";
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/fp/unescape.d.ts:2:export = unescape;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/escapeRegExp.d.ts:1:import { escapeRegExp } from "./index";
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/escapeRegExp.d.ts:2:export = escapeRegExp;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/escape.d.ts:1:import { escape } from "./index";
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/escape.d.ts:2:export = escape;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/fp.d.ts:666: type LodashEscape = (string: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/fp.d.ts:667: type LodashEscapeRegExp = (string: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/fp.d.ts:4269: type LodashUnescape = (string: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/fp.d.ts:4630: escape: LodashEscape;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/fp.d.ts:4631: escapeRegExp: LodashEscapeRegExp;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/fp.d.ts:4902: unescape: LodashUnescape;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/common/string.d.ts:98: * Note: No other characters are escaped. To escape additional characters use a third-party library like he.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/common/string.d.ts:100: * hough the ">" character is escaped for symmetry, characters like ">" and "/" dont need escaping in HTML
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/common/string.d.ts:104: * Backticks are escaped because in IE < 9, they can break out of attribute values or HTML comments. See #59,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/common/string.d.ts:109: * @param string The string to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/common/string.d.ts:110: * @return Returns the escaped string.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/common/string.d.ts:112: escape(string?: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/common/string.d.ts:116: * @see _.escape
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/common/string.d.ts:118: escape(): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/common/string.d.ts:122: * @see _.escape
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/common/string.d.ts:124: escape(): StringChain;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/common/string.d.ts:129: * Escapes the RegExp special characters "^", "$", "\", ".", "*", "+", "?", "(", ")", "[", "]",
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/common/string.d.ts:132: * @param string The string to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/common/string.d.ts:133: * @return Returns the escaped string.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/common/string.d.ts:135: escapeRegExp(string?: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/common/string.d.ts:139: * @see _.escapeRegExp
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/common/string.d.ts:141: escapeRegExp(): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/common/string.d.ts:145: * @see _.escapeRegExp
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/common/string.d.ts:147: escapeRegExp(): StringChain;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/common/string.d.ts:490: * HTML-escape interpolated data properties in "escape" delimiters, and execute JavaScript in "evaluate"
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/common/string.d.ts:506: * @param options.escape The HTML "escape" delimiter.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/common/string.d.ts:694: * The inverse of _.escape; this method converts the HTML entities &amp;, &lt;, &gt;, &quot;, &#39;, and &#96;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/common/string.d.ts:697: * Note: No other HTML entities are unescaped. To unescape additional HTML entities use a third-party library
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/common/string.d.ts:700: * @param string The string to unescape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/common/string.d.ts:701: * @return Returns the unescaped string.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/common/string.d.ts:703: unescape(string?: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/common/string.d.ts:707: * @see _.unescape
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/common/string.d.ts:709: unescape(): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/common/string.d.ts:713: * @see _.unescape
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/common/string.d.ts:715: unescape(): StringChain;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/common/common.d.ts:77: * conformsTo, deburr, defaultTo, divide, each, eachRight, endsWith, eq, escape, escapeRegExp,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/common/common.d.ts:91: * toString, toUpper, trim, trimEnd, trimStart, truncate, unescape, uniqueId, upperCase,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/common/common.d.ts:117: * The "escape" delimiter.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/common/common.d.ts:119: escape?: RegExp;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/unescape.d.ts:1:import { unescape } from "./index";
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/lodash/unescape.d.ts:2:export = unescape;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/mocha/index.d.ts:72: * Escape string and add it to grep as a RegExp.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/mocha/index.d.ts:79: * Add regexp to grep, if `re` is a string it is escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/cypress@15.7.0/node_modules/cypress/types/cypress.d.ts:703: ESC: 'Escape'
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/react-native-webrtc@124.0.7_react-native@0.82.1_@babel+core@7.28.5_react@19.2.0_/node_modules/react-native-webrtc/src/RTCPeerConnection.ts:97: // Sanitize ICE servers.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@vue+reactivity@3.5.24/node_modules/@vue/reactivity/dist/reactivity.d.ts:193: * This is an escape hatch that can be used to temporarily read without
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/index.ts:5: escapeUTF8,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/index.ts:6: escapeAttribute,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/index.ts:7: escapeText,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/index.ts:8:} from "./escape.js";
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/index.ts:21: * XML will be escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/index.ts:27: * be escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/index.ts:36: * Encode all characters that have to be escaped in HTML attributes,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/index.ts:41: * Encode all characters that have to be escaped in HTML text,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/index.ts:136: return escapeUTF8(input);
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/index.ts:139: return escapeAttribute(input);
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/index.ts:142: return escapeText(input);
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/index.ts:161: escape,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/index.ts:162: escapeUTF8,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/index.ts:163: escapeAttribute,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/index.ts:164: escapeText,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/index.ts:165:} from "./escape.js";
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/escape.ts:64: * Have a look at `escapeUTF8` if you want a more concise output at the expense
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/escape.ts:67: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/escape.ts:69:export const escape: typeof encodeXML = encodeXML;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/escape.ts:72: * Creates a function that escapes all characters matched by the given regular
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/escape.ts:73: * expression using the given map of characters to escape to their entities.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/escape.ts:75: * @param regex Regular expression to match characters to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/escape.ts:76: * @param map Map of characters to escape to their entities.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/escape.ts:78: * @returns Function that escapes all characters matched by the given regular
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/escape.ts:79: * expression using the given map of characters to escape to their entities.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/escape.ts:81:function getEscaper(
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/escape.ts:85: return function escape(data: string): string {
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/escape.ts:111: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/escape.ts:113:export const escapeUTF8: (data: string) => string = /* #__PURE__ */ getEscaper(
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/escape.ts:119: * Encodes all characters that have to be escaped in HTML attributes,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/escape.ts:122: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/escape.ts:124:export const escapeAttribute: (data: string) => string =
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/escape.ts:125: /* #__PURE__ */ getEscaper(
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/escape.ts:135: * Encodes all characters that have to be escaped in HTML text,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/escape.ts:138: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/escape.ts:140:export const escapeText: (data: string) => string = /* #__PURE__ */ getEscaper(
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/index.spec.ts:105: it(`should escape ${value}`, () =>
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/index.spec.ts:106: expect(entities.escape(value)).toBe(`&#x${c};`));
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/index.spec.ts:115:describe("Escape", () => {
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/index.spec.ts:119: expect(entities.decodeXML(entities.escape(c))).toBe(c);
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/index.spec.ts:124: expect(entities.escapeUTF8('ß < "ü"')).toBe(`ß &lt; &quot;ü&quot;`));
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/encode.ts:2:import { xmlReplacer, getCodePoint } from "./escape.js";
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/escape.spec.ts:4:describe("escape HTML", () => {
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/escape.spec.ts:5: it("should escape HTML attribute values", () =>
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/escape.spec.ts:6: expect(entities.escapeAttribute('<a " attr > & value \u00A0!')).toBe(
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/escape.spec.ts:10: it("should escape HTML text", () =>
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/src/escape.spec.ts:11: expect(entities.escapeText('<a " text > & value \u00A0!')).toBe(
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/dist/commonjs/index.d.ts:12: * XML will be escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/dist/commonjs/index.d.ts:18: * be escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/dist/commonjs/index.d.ts:27: * Encode all characters that have to be escaped in HTML attributes,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/dist/commonjs/index.d.ts:32: * Encode all characters that have to be escaped in HTML text,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/dist/commonjs/index.d.ts:93:export { encodeXML, escape, escapeUTF8, escapeAttribute, escapeText, } from "./escape.js";
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/dist/commonjs/escape.d.ts:15: * Have a look at `escapeUTF8` if you want a more concise output at the expense
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/dist/commonjs/escape.d.ts:18: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/dist/commonjs/escape.d.ts:20:export declare const escape: typeof encodeXML;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/dist/commonjs/escape.d.ts:26: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/dist/commonjs/escape.d.ts:28:export declare const escapeUTF8: (data: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/dist/commonjs/escape.d.ts:30: * Encodes all characters that have to be escaped in HTML attributes,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/dist/commonjs/escape.d.ts:33: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/dist/commonjs/escape.d.ts:35:export declare const escapeAttribute: (data: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/dist/commonjs/escape.d.ts:37: * Encodes all characters that have to be escaped in HTML text,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/dist/commonjs/escape.d.ts:40: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/dist/commonjs/escape.d.ts:42:export declare const escapeText: (data: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/dist/commonjs/escape.d.ts:43://# sourceMappingURL=escape.d.ts.map
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/dist/esm/index.d.ts:12: * XML will be escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/dist/esm/index.d.ts:18: * be escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/dist/esm/index.d.ts:27: * Encode all characters that have to be escaped in HTML attributes,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/dist/esm/index.d.ts:32: * Encode all characters that have to be escaped in HTML text,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/dist/esm/index.d.ts:93:export { encodeXML, escape, escapeUTF8, escapeAttribute, escapeText, } from "./escape.js";
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/dist/esm/escape.d.ts:15: * Have a look at `escapeUTF8` if you want a more concise output at the expense
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/dist/esm/escape.d.ts:18: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/dist/esm/escape.d.ts:20:export declare const escape: typeof encodeXML;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/dist/esm/escape.d.ts:26: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/dist/esm/escape.d.ts:28:export declare const escapeUTF8: (data: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/dist/esm/escape.d.ts:30: * Encodes all characters that have to be escaped in HTML attributes,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/dist/esm/escape.d.ts:33: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/dist/esm/escape.d.ts:35:export declare const escapeAttribute: (data: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/dist/esm/escape.d.ts:37: * Encodes all characters that have to be escaped in HTML text,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/dist/esm/escape.d.ts:40: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/dist/esm/escape.d.ts:42:export declare const escapeText: (data: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/dist/esm/escape.d.ts:43://# sourceMappingURL=escape.d.ts.map
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/entities@6.0.1/node_modules/entities/escape.d.ts:1:export * from "./dist/commonjs/escape.js";
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/es-module-lexer@1.7.0/node_modules/es-module-lexer/types/lexer.d.ts:41: * To handle escape sequences in specifier strings, the .n field of imported specifiers will be provided where possible.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/glob@10.5.0/node_modules/glob/dist/commonjs/index.d.ts:5:export { escape, unescape } from 'minimatch';
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/glob@10.5.0/node_modules/glob/dist/commonjs/index.d.ts:94: escape: (s: string, { windowsPathsNoEscape, magicalBraces, }?: Pick<import("minimatch").MinimatchOptions, "windowsPathsNoEscape" | "magicalBraces">) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/glob@10.5.0/node_modules/glob/dist/commonjs/index.d.ts:95: unescape: (s: string, { windowsPathsNoEscape, magicalBraces, }?: Pick<import("minimatch").MinimatchOptions, "windowsPathsNoEscape" | "magicalBraces">) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/glob@10.5.0/node_modules/glob/dist/commonjs/glob.d.ts:37: * Set to false to enable {@link windowsPathsNoEscape}
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/glob@10.5.0/node_modules/glob/dist/commonjs/glob.d.ts:41: allowWindowsEscape?: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/glob@10.5.0/node_modules/glob/dist/commonjs/glob.d.ts:208: * _never_ as an escape character. If set, all `\\` characters are
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/glob@10.5.0/node_modules/glob/dist/commonjs/glob.d.ts:218: * `allowWindowsEscape` is set to the exact value `false`.)
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/glob@10.5.0/node_modules/glob/dist/commonjs/glob.d.ts:220: windowsPathsNoEscape?: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/glob@10.5.0/node_modules/glob/dist/commonjs/glob.d.ts:335: windowsPathsNoEscape: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/glob@10.5.0/node_modules/glob/dist/commonjs/walker.d.ts:14: allowWindowsEscape?: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/glob@10.5.0/node_modules/glob/dist/commonjs/walker.d.ts:34: windowsPathsNoEscape?: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/glob@10.5.0/node_modules/glob/dist/esm/index.d.ts:5:export { escape, unescape } from 'minimatch';
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/glob@10.5.0/node_modules/glob/dist/esm/index.d.ts:94: escape: (s: string, { windowsPathsNoEscape, magicalBraces, }?: Pick<import("minimatch").MinimatchOptions, "windowsPathsNoEscape" | "magicalBraces">) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/glob@10.5.0/node_modules/glob/dist/esm/index.d.ts:95: unescape: (s: string, { windowsPathsNoEscape, magicalBraces, }?: Pick<import("minimatch").MinimatchOptions, "windowsPathsNoEscape" | "magicalBraces">) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/glob@10.5.0/node_modules/glob/dist/esm/glob.d.ts:37: * Set to false to enable {@link windowsPathsNoEscape}
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/glob@10.5.0/node_modules/glob/dist/esm/glob.d.ts:41: allowWindowsEscape?: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/glob@10.5.0/node_modules/glob/dist/esm/glob.d.ts:208: * _never_ as an escape character. If set, all `\\` characters are
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/glob@10.5.0/node_modules/glob/dist/esm/glob.d.ts:218: * `allowWindowsEscape` is set to the exact value `false`.)
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/glob@10.5.0/node_modules/glob/dist/esm/glob.d.ts:220: windowsPathsNoEscape?: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/glob@10.5.0/node_modules/glob/dist/esm/glob.d.ts:335: windowsPathsNoEscape: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/glob@10.5.0/node_modules/glob/dist/esm/walker.d.ts:14: allowWindowsEscape?: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/glob@10.5.0/node_modules/glob/dist/esm/walker.d.ts:34: windowsPathsNoEscape?: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/index.d.ts:29: function escapePath(source: string): PatternInternal;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/index.d.ts:32: function escapePath(source: string): PatternInternal;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/index.d.ts:36: function escapePath(source: string): PatternInternal;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/utils/path.d.ts:8:export declare const escape: typeof escapeWindowsPath;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/utils/path.d.ts:9:export declare function escapeWindowsPath(pattern: Pattern): Pattern;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/utils/path.d.ts:10:export declare function escapePosixPath(pattern: Pattern): Pattern;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@typescript-eslint+type-utils@8.47.0_eslint@9.39.1_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/type-utils/dist/propertyTypes.d.ts:2:export declare function getTypeOfPropertyOfName(checker: ts.TypeChecker, type: ts.Type, name: string, escapedName?: ts.__String): ts.Type | undefined;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/anser@1.4.10/node_modules/anser/lib/index.d.ts:36: * Escape the input HTML.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/anser@1.4.10/node_modules/anser/lib/index.d.ts:39: * In particular, the '&','<', and '>' characters are escaped. This should
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/anser@1.4.10/node_modules/anser/lib/index.d.ts:43: * @returns The escaped html.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/anser@1.4.10/node_modules/anser/lib/index.d.ts:45: static escapeForHtml (txt: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/anser@1.4.10/node_modules/anser/lib/index.d.ts:56: * @returns The HTML containing the <a> tags (unescaped).
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/anser@1.4.10/node_modules/anser/lib/index.d.ts:61: * This replaces ANSI terminal escape codes with SPAN tags that wrap the
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/anser@1.4.10/node_modules/anser/lib/index.d.ts:106: * Escapes the input text.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/anser@1.4.10/node_modules/anser/lib/index.d.ts:111: escapeForHtml (txt: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/weald@1.1.1/node_modules/weald/src/common.ts:97: // If we encounter an escaped % then don't increase the array index
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/weald@1.1.1/node_modules/weald/src/format.ts:13: fmt = fmt.replace(re, function (match, escaped, ptn, flag) {
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/weald@1.1.1/node_modules/weald/src/format.ts:38: if (!escaped) {
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/weald@1.1.1/node_modules/weald/src/format.ts:53: // update escaped %% values
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/weald@1.1.1/node_modules/weald/src/node.ts:158: * Adds ANSI color escape codes if enabled.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@multiformats+multiaddr@12.5.1/node_modules/@multiformats/multiaddr/src/registry.ts:53: * necessary, unescaping any escaped values
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@multiformats+multiaddr@12.5.1/node_modules/@multiformats/multiaddr/src/registry.ts:58: * To encode the multiaddr as a string, escape any necessary values
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@multiformats+multiaddr@12.5.1/node_modules/@multiformats/multiaddr/dist/src/registry.d.ts:38: * necessary, unescaping any escaped values
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@multiformats+multiaddr@12.5.1/node_modules/@multiformats/multiaddr/dist/src/registry.d.ts:42: * To encode the multiaddr as a string, escape any necessary values
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@csstools+css-parser-algorithms@3.0.5_@csstools+css-tokenizer@3.0.4/node_modules/@csstools/css-parser-algorithms/dist/index.d.ts:239: * This is the parsed and unescaped name of the function.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@vitest+mocker@3.2.4_vite@7.2.4_@types+node@22.19.1_jiti@2.6.1_lightningcss@1.30.2_terser@5.44.1_yaml@2.8.1_/node_modules/@vitest/mocker/dist/node.d.ts:573: /** It is null when the template literal is tagged and the text has an invalid escape (e.g. - tag`\unicode and \u{55}`) */
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/ansi-regex@5.0.1/node_modules/ansi-regex/index.d.ts:4: Match only the first ANSI escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/ansi-regex@5.0.1/node_modules/ansi-regex/index.d.ts:13:Regular expression for matching ANSI escape codes.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/dompurify@3.3.0/node_modules/dompurify/dist/purify.cjs.d.ts:114: * Sanitize a node "in place", which is much faster depending on how you use DOMPurify.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/dompurify@3.3.0/node_modules/dompurify/dist/purify.cjs.d.ts:134: * Change the parser type so sanitized data is treated as XML and not as HTML, which is the default.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/dompurify@3.3.0/node_modules/dompurify/dist/purify.cjs.d.ts:247: * @returns Sanitized TrustedHTML.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/dompurify@3.3.0/node_modules/dompurify/dist/purify.cjs.d.ts:249: sanitize(dirty: string | Node, cfg: Config & {
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/dompurify@3.3.0/node_modules/dompurify/dist/purify.cjs.d.ts:257: * @returns Sanitized DOM node.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/dompurify@3.3.0/node_modules/dompurify/dist/purify.cjs.d.ts:259: sanitize(dirty: Node, cfg: Config & {
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/dompurify@3.3.0/node_modules/dompurify/dist/purify.cjs.d.ts:267: * @returns Sanitized DOM node.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/dompurify@3.3.0/node_modules/dompurify/dist/purify.cjs.d.ts:269: sanitize(dirty: string | Node, cfg: Config & {
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/dompurify@3.3.0/node_modules/dompurify/dist/purify.cjs.d.ts:277: * @returns Sanitized document fragment.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/dompurify@3.3.0/node_modules/dompurify/dist/purify.cjs.d.ts:279: sanitize(dirty: string | Node, cfg: Config & {
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/dompurify@3.3.0/node_modules/dompurify/dist/purify.cjs.d.ts:287: * @returns Sanitized string.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/dompurify@3.3.0/node_modules/dompurify/dist/purify.cjs.d.ts:289: sanitize(dirty: string | Node, cfg?: Config): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/dompurify@3.3.0/node_modules/dompurify/dist/purify.cjs.d.ts:327: addHook(entryPoint: 'uponSanitizeElement', hookFunction: UponSanitizeElementHook): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/dompurify@3.3.0/node_modules/dompurify/dist/purify.cjs.d.ts:334: addHook(entryPoint: 'uponSanitizeAttribute', hookFunction: UponSanitizeAttributeHook): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/dompurify@3.3.0/node_modules/dompurify/dist/purify.cjs.d.ts:370: removeHook(entryPoint: 'uponSanitizeElement', hookFunction?: UponSanitizeElementHook): UponSanitizeElementHook | undefined;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/dompurify@3.3.0/node_modules/dompurify/dist/purify.cjs.d.ts:379: removeHook(entryPoint: 'uponSanitizeAttribute', hookFunction?: UponSanitizeAttributeHook): UponSanitizeAttributeHook | undefined;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/dompurify@3.3.0/node_modules/dompurify/dist/purify.cjs.d.ts:413:type BasicHookName = 'beforeSanitizeElements' | 'afterSanitizeElements' | 'uponSanitizeShadowNode';
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/dompurify@3.3.0/node_modules/dompurify/dist/purify.cjs.d.ts:414:type ElementHookName = 'beforeSanitizeAttributes' | 'afterSanitizeAttributes';
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/dompurify@3.3.0/node_modules/dompurify/dist/purify.cjs.d.ts:415:type DocumentFragmentHookName = 'beforeSanitizeShadowDOM' | 'afterSanitizeShadowDOM';
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/dompurify@3.3.0/node_modules/dompurify/dist/purify.cjs.d.ts:416:type UponSanitizeElementHookName = 'uponSanitizeElement';
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/dompurify@3.3.0/node_modules/dompurify/dist/purify.cjs.d.ts:417:type UponSanitizeAttributeHookName = 'uponSanitizeAttribute';
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/dompurify@3.3.0/node_modules/dompurify/dist/purify.cjs.d.ts:418:type HookName = BasicHookName | ElementHookName | DocumentFragmentHookName | UponSanitizeElementHookName | UponSanitizeAttributeHookName;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/dompurify@3.3.0/node_modules/dompurify/dist/purify.cjs.d.ts:422:type UponSanitizeElementHook = (this: DOMPurify, currentNode: Node, hookEvent: UponSanitizeElementHookEvent, config: Config) => void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/dompurify@3.3.0/node_modules/dompurify/dist/purify.cjs.d.ts:423:type UponSanitizeAttributeHook = (this: DOMPurify, currentNode: Element, hookEvent: UponSanitizeAttributeHookEvent, config: Config) => void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/dompurify@3.3.0/node_modules/dompurify/dist/purify.cjs.d.ts:424:interface UponSanitizeElementHookEvent {
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/dompurify@3.3.0/node_modules/dompurify/dist/purify.cjs.d.ts:428:interface UponSanitizeAttributeHookEvent {
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/dompurify@3.3.0/node_modules/dompurify/dist/purify.cjs.d.ts:443:export { type Config, type DOMPurify, type DocumentFragmentHook, type ElementHook, type HookName, type NodeHook, type RemovedAttribute, type RemovedElement, type UponSanitizeAttributeHook, type UponSanitizeAttributeHookEvent, type UponSanitizeElementHook, type UponSanitizeElementHookEvent, type WindowLike };
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/cjs/index.d.ts:11: windowsPathsNoEscape?: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/cjs/index.d.ts:12: allowWindowsEscape?: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/cjs/index.d.ts:36: escape: (s: string, { windowsPathsNoEscape, }?: Pick<MinimatchOptions, "windowsPathsNoEscape">) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/cjs/index.d.ts:37: unescape: (s: string, { windowsPathsNoEscape, }?: Pick<MinimatchOptions, "windowsPathsNoEscape">) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/cjs/index.d.ts:57: windowsPathsNoEscape: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/cjs/index.d.ts:92:export { escape } from './escape.js';
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/cjs/index.d.ts:93:export { unescape } from './unescape.js';
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/cjs/escape.d.ts:3: * Escape all magic characters in a glob pattern.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/cjs/escape.d.ts:5: * If the {@link windowsPathsNoEscape | GlobOptions.windowsPathsNoEscape}
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/cjs/escape.d.ts:6: * option is used, then characters are escaped by wrapping in `[]`, because
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/cjs/escape.d.ts:8: * that exact character. In this mode, `\` is _not_ escaped, because it is
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/cjs/escape.d.ts:11:export declare const escape: (s: string, { windowsPathsNoEscape, }?: Pick<MinimatchOptions, 'windowsPathsNoEscape'>) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/cjs/escape.d.ts:12://# sourceMappingURL=escape.d.ts.map
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/cjs/unescape.d.ts:3: * Un-escape a string that has been escaped with {@link escape}.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/cjs/unescape.d.ts:5: * If the {@link windowsPathsNoEscape} option is used, then square-brace
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/cjs/unescape.d.ts:6: * escapes are removed, but not backslash escapes. For example, it will turn
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/cjs/unescape.d.ts:8: * becuase `\` is a path separator in `windowsPathsNoEscape` mode.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/cjs/unescape.d.ts:10: * When `windowsPathsNoEscape` is not set, then both brace escapes and
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/cjs/unescape.d.ts:11: * backslash escapes are removed.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/cjs/unescape.d.ts:13: * Slashes (and backslashes in `windowsPathsNoEscape` mode) cannot be escaped
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/cjs/unescape.d.ts:14: * or unescaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/cjs/unescape.d.ts:16:export declare const unescape: (s: string, { windowsPathsNoEscape, }?: Pick<MinimatchOptions, 'windowsPathsNoEscape'>) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/cjs/unescape.d.ts:17://# sourceMappingURL=unescape.d.ts.map
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/mjs/index.d.ts:11: windowsPathsNoEscape?: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/mjs/index.d.ts:12: allowWindowsEscape?: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/mjs/index.d.ts:36: escape: (s: string, { windowsPathsNoEscape, }?: Pick<MinimatchOptions, "windowsPathsNoEscape">) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/mjs/index.d.ts:37: unescape: (s: string, { windowsPathsNoEscape, }?: Pick<MinimatchOptions, "windowsPathsNoEscape">) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/mjs/index.d.ts:57: windowsPathsNoEscape: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/mjs/index.d.ts:92:export { escape } from './escape.js';
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/mjs/index.d.ts:93:export { unescape } from './unescape.js';
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/mjs/escape.d.ts:3: * Escape all magic characters in a glob pattern.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/mjs/escape.d.ts:5: * If the {@link windowsPathsNoEscape | GlobOptions.windowsPathsNoEscape}
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/mjs/escape.d.ts:6: * option is used, then characters are escaped by wrapping in `[]`, because
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/mjs/escape.d.ts:8: * that exact character. In this mode, `\` is _not_ escaped, because it is
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/mjs/escape.d.ts:11:export declare const escape: (s: string, { windowsPathsNoEscape, }?: Pick<MinimatchOptions, 'windowsPathsNoEscape'>) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/mjs/escape.d.ts:12://# sourceMappingURL=escape.d.ts.map
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/mjs/unescape.d.ts:3: * Un-escape a string that has been escaped with {@link escape}.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/mjs/unescape.d.ts:5: * If the {@link windowsPathsNoEscape} option is used, then square-brace
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/mjs/unescape.d.ts:6: * escapes are removed, but not backslash escapes. For example, it will turn
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/mjs/unescape.d.ts:8: * becuase `\` is a path separator in `windowsPathsNoEscape` mode.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/mjs/unescape.d.ts:10: * When `windowsPathsNoEscape` is not set, then both brace escapes and
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/mjs/unescape.d.ts:11: * backslash escapes are removed.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/mjs/unescape.d.ts:13: * Slashes (and backslashes in `windowsPathsNoEscape` mode) cannot be escaped
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/mjs/unescape.d.ts:14: * or unescaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/mjs/unescape.d.ts:16:export declare const unescape: (s: string, { windowsPathsNoEscape, }?: Pick<MinimatchOptions, 'windowsPathsNoEscape'>) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.1/node_modules/minimatch/dist/mjs/unescape.d.ts:17://# sourceMappingURL=unescape.d.ts.map
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@libp2p+keychain@6.0.9/node_modules/@libp2p/keychain/src/keychain.ts:9:import sanitize from 'sanitize-filename'
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@libp2p+keychain@6.0.9/node_modules/@libp2p/keychain/src/keychain.ts:36: return name === sanitize(name.trim()) && name.length > 0
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/src/internal/Subscriber.ts:41: protected destination: Subscriber<any> | Observer<any>; // this `any` is the escape hatch to erase extra type param (e.g. R)
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/src/internal/observable/bindCallbackInternals.ts:80: // as there's nothing else to do. Just return to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/string-width@4.2.3/node_modules/string-width/index.d.ts:5: Some Unicode characters are [fullwidth](https://en.wikipedia.org/wiki/Halfwidth_and_fullwidth_forms) and use double the normal width. [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) are stripped and doesn't affect the width.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@libp2p+keychain@5.2.9/node_modules/@libp2p/keychain/src/keychain.ts:10:import sanitize from 'sanitize-filename'
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@libp2p+keychain@5.2.9/node_modules/@libp2p/keychain/src/keychain.ts:46: return name === sanitize(name.trim()) && name.length > 0
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/jest-regex-util@29.6.3/node_modules/jest-regex-util/build/index.d.ts:14:export declare const escapePathForRegex: (dir: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/jest-regex-util@29.6.3/node_modules/jest-regex-util/build/index.d.ts:16:export declare const escapeStrForRegex: (string: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@eslint-community+regexpp@4.12.2/node_modules/@eslint-community/regexpp/index.d.ts:95: | EscapeCharacterSet;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@eslint-community+regexpp@4.12.2/node_modules/@eslint-community/regexpp/index.d.ts:100: | EscapeCharacterSet
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@eslint-community+regexpp@4.12.2/node_modules/@eslint-community/regexpp/index.d.ts:292: | EscapeCharacterSet
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@eslint-community+regexpp@4.12.2/node_modules/@eslint-community/regexpp/index.d.ts:304: * The character class escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@eslint-community+regexpp@4.12.2/node_modules/@eslint-community/regexpp/index.d.ts:307: export interface EscapeCharacterSet extends NodeBase {
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@eslint-community+regexpp@4.12.2/node_modules/@eslint-community/regexpp/index.d.ts:319: * The unicode property escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@eslint-community+regexpp@4.12.2/node_modules/@eslint-community/regexpp/index.d.ts:345: /** StringsUnicodePropertyCharacterSet is Unicode property escape with property of strings. */
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@eslint-community+regexpp@4.12.2/node_modules/@eslint-community/regexpp/index.d.ts:376: | EscapeCharacterSet
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@eslint-community+regexpp@4.12.2/node_modules/@eslint-community/regexpp/index.d.ts:417: * This includes escape sequences which mean a character.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@eslint-community+regexpp@4.12.2/node_modules/@eslint-community/regexpp/index.d.ts:519: * and Unicode Property Escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@eslint-community+regexpp@4.12.2/node_modules/@eslint-community/regexpp/index.d.ts:520: * - `2019`, `2020`, and `2021` added more valid Unicode Property Escapes.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@eslint-community+regexpp@4.12.2/node_modules/@eslint-community/regexpp/index.d.ts:522: * - `2023` added more valid Unicode Property Escapes.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@eslint-community+regexpp@4.12.2/node_modules/@eslint-community/regexpp/index.d.ts:608: * and Unicode Property Escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@eslint-community+regexpp@4.12.2/node_modules/@eslint-community/regexpp/index.d.ts:609: * - `2019`, `2020`, and `2021` added more valid Unicode Property Escapes.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@eslint-community+regexpp@4.12.2/node_modules/@eslint-community/regexpp/index.d.ts:611: * - `2023` added more valid Unicode Property Escapes.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@eslint-community+regexpp@4.12.2/node_modules/@eslint-community/regexpp/index.d.ts:860: * A function that is called when the validator found a character set escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@eslint-community+regexpp@4.12.2/node_modules/@eslint-community/regexpp/index.d.ts:866: onEscapeCharacterSet?: (
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@eslint-community+regexpp@4.12.2/node_modules/@eslint-community/regexpp/index.d.ts:873: * A function that is called when the validator found a Unicode proerty escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/ajv@6.12.6/node_modules/ajv/lib/ajv.d.ts:269: escapeQuotes(str: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/ajv@6.12.6/node_modules/ajv/lib/ajv.d.ts:272: escapeJsonPointer(str: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/ajv@6.12.6/node_modules/ajv/lib/ajv.d.ts:273: unescapeJsonPointer(str: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/ajv@6.12.6/node_modules/ajv/lib/ajv.d.ts:274: escapeFragment(str: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/ajv@6.12.6/node_modules/ajv/lib/ajv.d.ts:275: unescapeFragment(str: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/react-native@0.82.1_@babel+core@7.28.5_react@19.2.0/node_modules/react-native/types_generated/Libraries/Components/View/ViewPropTypes.d.ts:55: * user performs the escape gesture.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/react-native@0.82.1_@babel+core@7.28.5_react@19.2.0/node_modules/react-native/types_generated/Libraries/Components/View/ViewPropTypes.d.ts:57: * See https://reactnative.dev/docs/view#onaccessibilityescape
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/react-native@0.82.1_@babel+core@7.28.5_react@19.2.0/node_modules/react-native/types_generated/Libraries/Components/View/ViewPropTypes.d.ts:59: onAccessibilityEscape?: (() => unknown) | undefined;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/react-native@0.82.1_@babel+core@7.28.5_react@19.2.0/node_modules/react-native/types_generated/Libraries/Components/View/ViewAccessibility.d.ts:38: * */ | "escape";
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/react-native@0.82.1_@babel+core@7.28.5_react@19.2.0/node_modules/react-native/Libraries/Components/View/ViewAccessibility.d.ts:135: | 'escape';
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/react-native@0.82.1_@babel+core@7.28.5_react@19.2.0/node_modules/react-native/Libraries/Components/View/ViewAccessibility.d.ts:300: * When accessible is true, the system will invoke this function when the user performs the escape gesture (scrub with two fingers).
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/react-native@0.82.1_@babel+core@7.28.5_react@19.2.0/node_modules/react-native/Libraries/Components/View/ViewAccessibility.d.ts:303: onAccessibilityEscape?: (() => void) | undefined;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/commonjs/index.d.ts:11: windowsPathsNoEscape?: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/commonjs/index.d.ts:12: allowWindowsEscape?: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/commonjs/index.d.ts:36: escape: (s: string, { windowsPathsNoEscape, }?: Pick<MinimatchOptions, "windowsPathsNoEscape">) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/commonjs/index.d.ts:37: unescape: (s: string, { windowsPathsNoEscape, }?: Pick<MinimatchOptions, "windowsPathsNoEscape">) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/commonjs/index.d.ts:57: windowsPathsNoEscape: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/commonjs/index.d.ts:92:export { escape } from './escape.js';
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/commonjs/index.d.ts:93:export { unescape } from './unescape.js';
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/commonjs/escape.d.ts:3: * Escape all magic characters in a glob pattern.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/commonjs/escape.d.ts:5: * If the {@link windowsPathsNoEscape | GlobOptions.windowsPathsNoEscape}
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/commonjs/escape.d.ts:6: * option is used, then characters are escaped by wrapping in `[]`, because
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/commonjs/escape.d.ts:8: * that exact character. In this mode, `\` is _not_ escaped, because it is
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/commonjs/escape.d.ts:11:export declare const escape: (s: string, { windowsPathsNoEscape, }?: Pick<MinimatchOptions, 'windowsPathsNoEscape'>) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/commonjs/escape.d.ts:12://# sourceMappingURL=escape.d.ts.map
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/commonjs/unescape.d.ts:3: * Un-escape a string that has been escaped with {@link escape}.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/commonjs/unescape.d.ts:5: * If the {@link windowsPathsNoEscape} option is used, then square-brace
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/commonjs/unescape.d.ts:6: * escapes are removed, but not backslash escapes. For example, it will turn
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/commonjs/unescape.d.ts:8: * becuase `\` is a path separator in `windowsPathsNoEscape` mode.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/commonjs/unescape.d.ts:10: * When `windowsPathsNoEscape` is not set, then both brace escapes and
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/commonjs/unescape.d.ts:11: * backslash escapes are removed.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/commonjs/unescape.d.ts:13: * Slashes (and backslashes in `windowsPathsNoEscape` mode) cannot be escaped
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/commonjs/unescape.d.ts:14: * or unescaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/commonjs/unescape.d.ts:16:export declare const unescape: (s: string, { windowsPathsNoEscape, }?: Pick<MinimatchOptions, 'windowsPathsNoEscape'>) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/commonjs/unescape.d.ts:17://# sourceMappingURL=unescape.d.ts.map
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/index.d.ts:11: windowsPathsNoEscape?: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/index.d.ts:12: allowWindowsEscape?: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/index.d.ts:36: escape: (s: string, { windowsPathsNoEscape, }?: Pick<MinimatchOptions, "windowsPathsNoEscape">) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/index.d.ts:37: unescape: (s: string, { windowsPathsNoEscape, }?: Pick<MinimatchOptions, "windowsPathsNoEscape">) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/index.d.ts:57: windowsPathsNoEscape: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/index.d.ts:92:export { escape } from './escape.js';
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/index.d.ts:93:export { unescape } from './unescape.js';
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/escape.d.ts:3: * Escape all magic characters in a glob pattern.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/escape.d.ts:5: * If the {@link windowsPathsNoEscape | GlobOptions.windowsPathsNoEscape}
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/escape.d.ts:6: * option is used, then characters are escaped by wrapping in `[]`, because
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/escape.d.ts:8: * that exact character. In this mode, `\` is _not_ escaped, because it is
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/escape.d.ts:11:export declare const escape: (s: string, { windowsPathsNoEscape, }?: Pick<MinimatchOptions, 'windowsPathsNoEscape'>) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/escape.d.ts:12://# sourceMappingURL=escape.d.ts.map
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/unescape.d.ts:3: * Un-escape a string that has been escaped with {@link escape}.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/unescape.d.ts:5: * If the {@link windowsPathsNoEscape} option is used, then square-brace
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/unescape.d.ts:6: * escapes are removed, but not backslash escapes. For example, it will turn
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/unescape.d.ts:8: * becuase `\` is a path separator in `windowsPathsNoEscape` mode.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/unescape.d.ts:10: * When `windowsPathsNoEscape` is not set, then both brace escapes and
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/unescape.d.ts:11: * backslash escapes are removed.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/unescape.d.ts:13: * Slashes (and backslashes in `windowsPathsNoEscape` mode) cannot be escaped
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/unescape.d.ts:14: * or unescaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/unescape.d.ts:16:export declare const unescape: (s: string, { windowsPathsNoEscape, }?: Pick<MinimatchOptions, 'windowsPathsNoEscape'>) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/unescape.d.ts:17://# sourceMappingURL=unescape.d.ts.map
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/strip-ansi@6.0.1/node_modules/strip-ansi/index.d.ts:2:Strip [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) from a string.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+babel__core@7.20.5/node_modules/@types/babel__core/index.d.ts:242: * Should the output be minified (not printing last semicolons in blocks, printing literal string values instead of escaped ones, stripping `()` from `new` when safe)
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+jsdom@27.0.0/node_modules/@types/jsdom/base.d.ts:218: escape(string: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+jsdom@27.0.0/node_modules/@types/jsdom/base.d.ts:219: unescape(string: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/ansi-styles@4.3.0/node_modules/ansi-styles/index.d.ts:202: Use a [4-bit unsigned number](https://en.wikipedia.org/wiki/ANSI_escape_code#3/4-bit) to set text color.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/ansi-styles@4.3.0/node_modules/ansi-styles/index.d.ts:207: Use an [8-bit unsigned number](https://en.wikipedia.org/wiki/ANSI_escape_code#8-bit) to set text color.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+mdurl@2.0.0/node_modules/@types/mdurl/build/index.cjs.d.ts:42: * @param keepEscaped don't encode '%' in a correct escape sequence (default: true)
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+mdurl@2.0.0/node_modules/@types/mdurl/build/index.cjs.d.ts:44: (str: string, exclude?: string, keepEscaped?: boolean): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@eslint-community+eslint-utils@4.9.0_eslint@9.39.1_jiti@2.6.1_/node_modules/@eslint-community/eslint-utils/index.d.ts:152: escaped?: boolean | undefined;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/vite@7.2.4_@types+node@22.19.1_jiti@2.6.1_lightningcss@1.30.2_terser@5.44.1_yaml@2.8.1/node_modules/vite/dist/node/index.d.ts:2601: * attribute values will be escaped automatically if needed
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/joi@18.0.2/node_modules/joi/lib/index.d.ts:36: * when true, error message templates will escape special characters to HTML entities, for security purposes.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/joi@18.0.2/node_modules/joi/lib/index.d.ts:40: escapeHtml?: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/joi@18.0.2/node_modules/joi/lib/index.d.ts:192: * Variables in double braces `{{var}}` are HTML escaped if the option `errors.escapeHtml` is set to true.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/joi@18.0.2/node_modules/joi/lib/index.d.ts:431: * Can be an Array or String (strings are automatically escaped for use in a Regular Expression).
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/joi@18.0.2/node_modules/joi/lib/index.d.ts:1317: * Marks a key to be removed from a resulting object or array after validation. Used to sanitize output.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/ansi-regex@6.2.2/node_modules/ansi-regex/index.d.ts:3: Match only the first ANSI escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/ansi-regex@6.2.2/node_modules/ansi-regex/index.d.ts:11:Regular expression for matching ANSI escape codes.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/prettier@3.6.2/node_modules/prettier/index.d.ts:917: unescapeUnnecessaryEscapes?: boolean | undefined,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@csstools+css-tokenizer@3.0.4/node_modules/@csstools/css-tokenizer/dist/index.d.ts:207: UnexpectedEOFInEscapedCodePoint: string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@csstools+css-tokenizer@3.0.4/node_modules/@csstools/css-tokenizer/dist/index.d.ts:209: InvalidEscapeSequenceInURL: string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@csstools+css-tokenizer@3.0.4/node_modules/@csstools/css-tokenizer/dist/index.d.ts:210: InvalidEscapeSequenceAfterBackslash: string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@csstools+css-tokenizer@3.0.4/node_modules/@csstools/css-tokenizer/dist/index.d.ts:265: * These values are unescaped, unquoted, converted to numbers, etc.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@csstools+css-tokenizer@3.0.4/node_modules/@csstools/css-tokenizer/dist/index.d.ts:275: * The unescaped at-keyword name without the leading `@`.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@csstools+css-tokenizer@3.0.4/node_modules/@csstools/css-tokenizer/dist/index.d.ts:325: * The unescaped unit name.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@csstools+css-tokenizer@3.0.4/node_modules/@csstools/css-tokenizer/dist/index.d.ts:345: * The unescaped function name without the trailing `(`.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@csstools+css-tokenizer@3.0.4/node_modules/@csstools/css-tokenizer/dist/index.d.ts:353: * The unescaped hash value without the leading `#`.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@csstools+css-tokenizer@3.0.4/node_modules/@csstools/css-tokenizer/dist/index.d.ts:365: * The unescaped ident value.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@csstools+css-tokenizer@3.0.4/node_modules/@csstools/css-tokenizer/dist/index.d.ts:442: * The unescaped string value without the leading and trailing quotes.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@csstools+css-tokenizer@3.0.4/node_modules/@csstools/css-tokenizer/dist/index.d.ts:584: * The unescaped URL value without the leading `url(` and trailing `)`.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/word-wrap@1.2.5/node_modules/word-wrap/index.d.ts:30: * An escape function to run on each line after splitting them.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/word-wrap@1.2.5/node_modules/word-wrap/index.d.ts:33: escape?: (str: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@asamuzakjp+dom-selector@6.7.4/node_modules/@asamuzakjp/dom-selector/types/js/parser.d.ts:1:export function unescapeSelector(selector?: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/globals@16.5.0/node_modules/globals/index.d.ts:1226: readonly 'escape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/globals@16.5.0/node_modules/globals/index.d.ts:1268: readonly 'unescape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/globals@16.5.0/node_modules/globals/index.d.ts:1362: readonly 'escape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/globals@16.5.0/node_modules/globals/index.d.ts:1399: readonly 'unescape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/globals@16.5.0/node_modules/globals/index.d.ts:1416: readonly 'escape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/globals@16.5.0/node_modules/globals/index.d.ts:1453: readonly 'unescape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/globals@16.5.0/node_modules/globals/index.d.ts:1471: readonly 'escape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/globals@16.5.0/node_modules/globals/index.d.ts:1509: readonly 'unescape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/globals@16.5.0/node_modules/globals/index.d.ts:1527: readonly 'escape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/globals@16.5.0/node_modules/globals/index.d.ts:1565: readonly 'unescape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/globals@16.5.0/node_modules/globals/index.d.ts:1583: readonly 'escape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/globals@16.5.0/node_modules/globals/index.d.ts:1621: readonly 'unescape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/globals@16.5.0/node_modules/globals/index.d.ts:1642: readonly 'escape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/globals@16.5.0/node_modules/globals/index.d.ts:1681: readonly 'unescape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/globals@16.5.0/node_modules/globals/index.d.ts:1703: readonly 'escape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/globals@16.5.0/node_modules/globals/index.d.ts:1743: readonly 'unescape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/globals@16.5.0/node_modules/globals/index.d.ts:1766: readonly 'escape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/globals@16.5.0/node_modules/globals/index.d.ts:1806: readonly 'unescape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/globals@16.5.0/node_modules/globals/index.d.ts:1829: readonly 'escape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/globals@16.5.0/node_modules/globals/index.d.ts:1869: readonly 'unescape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/globals@16.5.0/node_modules/globals/index.d.ts:1892: readonly 'escape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/globals@16.5.0/node_modules/globals/index.d.ts:1932: readonly 'unescape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/globals@16.5.0/node_modules/globals/index.d.ts:1955: readonly 'escape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/globals@16.5.0/node_modules/globals/index.d.ts:1997: readonly 'unescape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/globals@16.5.0/node_modules/globals/index.d.ts:2020: readonly 'escape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/globals@16.5.0/node_modules/globals/index.d.ts:2062: readonly 'unescape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/globals@16.5.0/node_modules/globals/index.d.ts:2078: readonly 'escape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/globals@16.5.0/node_modules/globals/index.d.ts:2098: readonly 'unescape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/globals@16.5.0/node_modules/globals/index.d.ts:2111: readonly 'escape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/globals@16.5.0/node_modules/globals/index.d.ts:2132: readonly 'unescape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/superjson@2.2.5/node_modules/superjson/dist/pathstringifier.d.ts:3:export declare const escapeKey: (key: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/execa@4.1.0/node_modules/execa/index.d.ts:493: If the file or an argument contains spaces, they must be escaped with backslashes. This matters especially if `command` is not a constant but a variable, for example with `__dirname` or `process.cwd()`. Except for spaces, no escaping/quoting is needed.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/dayjs@1.11.19/node_modules/dayjs/esm/index.d.ts:274: * To escape characters, wrap them in square brackets (e.g. [MM]).
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/dayjs@1.11.19/node_modules/dayjs/esm/index.d.ts:277: * dayjs('2019-01-25').format('[YYYYescape] YYYY-MM-DDTHH:mm:ssZ[Z]')// 'YYYYescape 2019-01-25T00:00:00-02:00Z'
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/dayjs@1.11.19/node_modules/dayjs/index.d.ts:274: * To escape characters, wrap them in square brackets (e.g. [MM]).
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/dayjs@1.11.19/node_modules/dayjs/index.d.ts:277: * dayjs('2019-01-25').format('[YYYYescape] YYYY-MM-DDTHH:mm:ssZ[Z]')// 'YYYYescape 2019-01-25T00:00:00-02:00Z'
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/postcss-selector-parser@6.1.2/node_modules/postcss-selector-parser/postcss-selector-parser.d.ts:179: * this allows the escaped value to be specified directly, allowing illegal characters to be
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/postcss-selector-parser@6.1.2/node_modules/postcss-selector-parser/postcss-selector-parser.d.ts:182: * @param value the unescaped value of the property
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/postcss-selector-parser@6.1.2/node_modules/postcss-selector-parser/postcss-selector-parser.d.ts:183: * @param valueEscaped optional. the escaped value of the property.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/postcss-selector-parser@6.1.2/node_modules/postcss-selector-parser/postcss-selector-parser.d.ts:185: setPropertyAndEscape(name: string, value: any, valueEscaped: string): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/postcss-selector-parser@6.1.2/node_modules/postcss-selector-parser/postcss-selector-parser.d.ts:189: * to the unescaped value.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/postcss-selector-parser@6.1.2/node_modules/postcss-selector-parser/postcss-selector-parser.d.ts:191: * @param value The value that is both escaped and unescaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/postcss-selector-parser@6.1.2/node_modules/postcss-selector-parser/postcss-selector-parser.d.ts:193: setPropertyWithoutEscape(name: string, value: any): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/postcss-selector-parser@6.1.2/node_modules/postcss-selector-parser/postcss-selector-parser.d.ts:197: * by specifying the escaped value. By specifying the escaped value,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/postcss-selector-parser@6.1.2/node_modules/postcss-selector-parser/postcss-selector-parser.d.ts:200: * @param {any} value the unescaped value of the property
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/postcss-selector-parser@6.1.2/node_modules/postcss-selector-parser/postcss-selector-parser.d.ts:201: * @param {string} valueEscaped optional. the escaped value of the property.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/postcss-selector-parser@6.1.2/node_modules/postcss-selector-parser/postcss-selector-parser.d.ts:203: appendToPropertyAndEscape(name: string, value: any, valueEscaped: string): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/postcss-selector-parser@6.1.2/node_modules/postcss-selector-parser/postcss-selector-parser.d.ts:420: /** The value of the attribute with quotes and escapes. */
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/postcss-selector-parser@6.1.2/node_modules/postcss-selector-parser/postcss-selector-parser.d.ts:454: * Set the unescaped value with the specified quotation options. The value
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/postcss-selector-parser@6.1.2/node_modules/postcss-selector-parser/postcss-selector-parser.d.ts:456: * be interpreted as part of the value and escaped accordingly.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/postcss-selector-parser@6.1.2/node_modules/postcss-selector-parser/postcss-selector-parser.d.ts:464: * mark will be picked that minimizes the number of escapes.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@hapi+address@5.1.1/node_modules/@hapi/address/src/uri.ts:1:import { assert, escapeRegex } from '@hapi/hoek';
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@hapi+address@5.1.1/node_modules/@hapi/address/src/uri.ts:231: selections.push(escapeRegex(scheme));
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/ipfs-unixfs-exporter@13.7.3/node_modules/ipfs-unixfs-exporter/src/index.ts:387: // split on / unless escaped with \
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/yaml@2.8.1/node_modules/yaml/dist/stringify/foldFlowLines.d.ts:6: * `'quoted'` allows for `\` escapes, including escaped newlines
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@7.3.0/node_modules/parse5/dist/tokenizer/index.d.ts:190: protected _stateScriptDataEscapeStart(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@7.3.0/node_modules/parse5/dist/tokenizer/index.d.ts:191: protected _stateScriptDataEscapeStartDash(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@7.3.0/node_modules/parse5/dist/tokenizer/index.d.ts:192: protected _stateScriptDataEscaped(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@7.3.0/node_modules/parse5/dist/tokenizer/index.d.ts:193: protected _stateScriptDataEscapedDash(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@7.3.0/node_modules/parse5/dist/tokenizer/index.d.ts:194: protected _stateScriptDataEscapedDashDash(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@7.3.0/node_modules/parse5/dist/tokenizer/index.d.ts:195: protected _stateScriptDataEscapedLessThanSign(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@7.3.0/node_modules/parse5/dist/tokenizer/index.d.ts:196: protected _stateScriptDataEscapedEndTagOpen(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@7.3.0/node_modules/parse5/dist/tokenizer/index.d.ts:197: protected _stateScriptDataEscapedEndTagName(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@7.3.0/node_modules/parse5/dist/tokenizer/index.d.ts:198: protected _stateScriptDataDoubleEscapeStart(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@7.3.0/node_modules/parse5/dist/tokenizer/index.d.ts:199: protected _stateScriptDataDoubleEscaped(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@7.3.0/node_modules/parse5/dist/tokenizer/index.d.ts:200: protected _stateScriptDataDoubleEscapedDash(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@7.3.0/node_modules/parse5/dist/tokenizer/index.d.ts:201: protected _stateScriptDataDoubleEscapedDashDash(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@7.3.0/node_modules/parse5/dist/tokenizer/index.d.ts:202: protected _stateScriptDataDoubleEscapedLessThanSign(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@7.3.0/node_modules/parse5/dist/tokenizer/index.d.ts:203: protected _stateScriptDataDoubleEscapeEnd(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@7.3.0/node_modules/parse5/dist/serializer/index.d.ts:12: * to `true`, `noscript` element content will not be escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@7.3.0/node_modules/parse5/dist/common/html.d.ts:289:export declare function hasUnescapedText(tn: string, scriptingEnabled: boolean): boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@7.3.0/node_modules/parse5/dist/cjs/tokenizer/index.d.ts:190: protected _stateScriptDataEscapeStart(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@7.3.0/node_modules/parse5/dist/cjs/tokenizer/index.d.ts:191: protected _stateScriptDataEscapeStartDash(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@7.3.0/node_modules/parse5/dist/cjs/tokenizer/index.d.ts:192: protected _stateScriptDataEscaped(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@7.3.0/node_modules/parse5/dist/cjs/tokenizer/index.d.ts:193: protected _stateScriptDataEscapedDash(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@7.3.0/node_modules/parse5/dist/cjs/tokenizer/index.d.ts:194: protected _stateScriptDataEscapedDashDash(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@7.3.0/node_modules/parse5/dist/cjs/tokenizer/index.d.ts:195: protected _stateScriptDataEscapedLessThanSign(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@7.3.0/node_modules/parse5/dist/cjs/tokenizer/index.d.ts:196: protected _stateScriptDataEscapedEndTagOpen(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@7.3.0/node_modules/parse5/dist/cjs/tokenizer/index.d.ts:197: protected _stateScriptDataEscapedEndTagName(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@7.3.0/node_modules/parse5/dist/cjs/tokenizer/index.d.ts:198: protected _stateScriptDataDoubleEscapeStart(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@7.3.0/node_modules/parse5/dist/cjs/tokenizer/index.d.ts:199: protected _stateScriptDataDoubleEscaped(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@7.3.0/node_modules/parse5/dist/cjs/tokenizer/index.d.ts:200: protected _stateScriptDataDoubleEscapedDash(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@7.3.0/node_modules/parse5/dist/cjs/tokenizer/index.d.ts:201: protected _stateScriptDataDoubleEscapedDashDash(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@7.3.0/node_modules/parse5/dist/cjs/tokenizer/index.d.ts:202: protected _stateScriptDataDoubleEscapedLessThanSign(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@7.3.0/node_modules/parse5/dist/cjs/tokenizer/index.d.ts:203: protected _stateScriptDataDoubleEscapeEnd(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@7.3.0/node_modules/parse5/dist/cjs/serializer/index.d.ts:12: * to `true`, `noscript` element content will not be escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/parse5@7.3.0/node_modules/parse5/dist/cjs/common/html.d.ts:289:export declare function hasUnescapedText(tn: string, scriptingEnabled: boolean): boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/eslint@9.39.1_jiti@2.6.1/node_modules/eslint/lib/types/rules.d.ts:3025: allowEscape: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/eslint@9.39.1_jiti@2.6.1/node_modules/eslint/lib/types/rules.d.ts:3281: * Rule to disallow `\8` and `\9` escape sequences in string literals.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/eslint@9.39.1_jiti@2.6.1/node_modules/eslint/lib/types/rules.d.ts:3287: * @see https://eslint.org/docs/latest/rules/no-nonoctal-decimal-escape
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/eslint@9.39.1_jiti@2.6.1/node_modules/eslint/lib/types/rules.d.ts:3289: "no-nonoctal-decimal-escape": Linter.RuleEntry<[]>;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/eslint@9.39.1_jiti@2.6.1/node_modules/eslint/lib/types/rules.d.ts:3322: * Rule to disallow octal escape sequences in string literals.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/eslint@9.39.1_jiti@2.6.1/node_modules/eslint/lib/types/rules.d.ts:3325: * @see https://eslint.org/docs/latest/rules/no-octal-escape
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/eslint@9.39.1_jiti@2.6.1/node_modules/eslint/lib/types/rules.d.ts:3327: "no-octal-escape": Linter.RuleEntry<[]>;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/eslint@9.39.1_jiti@2.6.1/node_modules/eslint/lib/types/rules.d.ts:4351: * Rule to disallow unnecessary escape characters.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/eslint@9.39.1_jiti@2.6.1/node_modules/eslint/lib/types/rules.d.ts:4357: * @see https://eslint.org/docs/latest/rules/no-useless-escape
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/eslint@9.39.1_jiti@2.6.1/node_modules/eslint/lib/types/rules.d.ts:4359: "no-useless-escape": Linter.RuleEntry<
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/eslint@9.39.1_jiti@2.6.1/node_modules/eslint/lib/types/rules.d.ts:5019: avoidEscape: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@typescript-eslint+eslint-plugin@8.47.0_@typescript-eslint+parser@8.47.0_eslint@9.39.1__9d9a2ed74f6a3afa1e0e5601e9c7330a/node_modules/@typescript-eslint/eslint-plugin/dist/util/escapeRegExp.d.ts:1:export declare function escapeRegExp(string?: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/sanitize-filename@1.6.3/node_modules/sanitize-filename/index.d.ts:1:declare function sanitize(
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/sanitize-filename@1.6.3/node_modules/sanitize-filename/index.d.ts:8:export = sanitize;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/exponential-backoff@3.1.3/node_modules/exponential-backoff/src/backoff.ts:3: getSanitizedOptions,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/exponential-backoff@3.1.3/node_modules/exponential-backoff/src/backoff.ts:20: const sanitizedOptions = getSanitizedOptions(options);
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/exponential-backoff@3.1.3/node_modules/exponential-backoff/src/backoff.ts:21: const backOff = new BackOff(request, sanitizedOptions);
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/exponential-backoff@3.1.3/node_modules/exponential-backoff/src/options.ts:68:export function getSanitizedOptions(options: BackoffOptions) {
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/exponential-backoff@3.1.3/node_modules/exponential-backoff/src/options.ts:69: const sanitized: IBackOffOptions = { ...defaultOptions, ...options };
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/exponential-backoff@3.1.3/node_modules/exponential-backoff/src/options.ts:71: if (sanitized.numOfAttempts < 1) {
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/exponential-backoff@3.1.3/node_modules/exponential-backoff/src/options.ts:72: sanitized.numOfAttempts = 1;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/exponential-backoff@3.1.3/node_modules/exponential-backoff/src/options.ts:75: return sanitized;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/exponential-backoff@3.1.3/node_modules/exponential-backoff/src/delay/always/always.delay.spec.ts:2:import { IBackOffOptions, getSanitizedOptions } from "../../options";
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/exponential-backoff@3.1.3/node_modules/exponential-backoff/src/delay/always/always.delay.spec.ts:13: options = getSanitizedOptions({});
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/exponential-backoff@3.1.3/node_modules/exponential-backoff/dist/options.d.ts:55:export declare function getSanitizedOptions(options: BackoffOptions): IBackOffOptions;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@vue+devtools-kit@8.0.5/node_modules/@vue/devtools-kit/dist/index.d.ts:1055:declare function escape(s: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@vue+devtools-kit@8.0.5/node_modules/@vue/devtools-kit/dist/index.d.ts:1172:export { AddInspectorApiPayload, App, AppRecord, ComponentBoundingRect, ComponentBoundingRectApiPayload, ComponentBounds, ComponentHighLighterOptions, ComponentInspector, ComponentInstance, ComponentState, ComponentTreeNode, CreateRpcClientOptions, CreateRpcServerOptions, CustomCommand, CustomCommandAction, CustomInspectorNode, CustomInspectorOptions, CustomInspectorState, CustomTab, DevToolsApiType, DevToolsAppRecords, DevToolsContextHookKeys, DevToolsContextHookPayloads, DevToolsContextHooks, DevToolsEvent, DevToolsHook, DevToolsHooks, DevToolsMessagingHookKeys, DevToolsMessagingHookPayloads, DevToolsMessagingHooks, DevToolsPlugin, DevToolsState, DevToolsV6PluginAPIHookKeys, DevToolsV6PluginAPIHookPayloads, DevToolsV6PluginAPIHooks, DevtoolsContext, EditStatePayload, INFINITY, InspectedComponentData, InspectorCustomState, InspectorNodeTag, InspectorState, InspectorStateApiPayload, InspectorStateEditorPayload, InspectorTree, InspectorTreeApiPayload, ModuleIframeView, ModuleSFCView, ModuleVNodeView, ModuleView, NAN, NEGATIVE_INFINITY, OpenInEditorOptions, PluginDescriptor, PluginSetupFunction, Presets, PropPath, ROUTER_INFO_KEY, ROUTER_KEY, type Router, RouterInfo, ScreenshotData, ScreenshotOverlayEvent, ScreenshotOverlayRenderContext, ScreenshotOverlayRenderResult, ScrollToComponentOptions, StateBase, TimelineEvent, TimelineEventOptions, TimelineLayerOptions, UNDEFINED, VueAppInstance, VueHooks, activeAppRecord, addCustomCommand, addCustomTab, addDevToolsAppRecord, addDevToolsPluginToBuffer, addInspector, callConnectedUpdatedHook, callDevToolsPluginSetupFn, callInspectorUpdatedHook, callStateUpdatedHook, cancelInspectComponentHighLighter, createComponentsDevToolsPlugin, createDevToolsApi, createDevToolsCtxHooks, createRpcClient, createRpcProxy, createRpcServer, customTypeEnums, devtools, devtoolsAppRecords, devtoolsContext, devtoolsInspector, devtoolsPluginBuffer, devtoolsRouter, devtoolsRouterInfo, devtoolsState, escape, formatInspectorStateValue, getActiveInspectors, getComponentInspector, getDevToolsEnv, getExtensionClientContext, getInspector, getInspectorActions, getInspectorInfo, getInspectorNodeActions, getInspectorStateValueType, getRaw, getRpcClient, getRpcServer, getViteRpcClient, getViteRpcServer, highlight, initDevTools, inspectComponentHighLighter, isPlainObject, onDevToolsClientConnected, onDevToolsConnected, openInEditor, parse, registerDevToolsPlugin, removeCustomCommand, removeDevToolsAppRecord, removeRegisteredPluginApp, resetDevToolsState, scrollToComponent, setActiveAppRecord, setActiveAppRecordId, setDevToolsEnv, setElectronClientContext, setElectronProxyContext, setElectronServerContext, setExtensionClientContext, setIframeServerContext, setOpenInEditorBaseUrl, setRpcServerToGlobal, setViteClientContext, setViteRpcClientToGlobal, setViteRpcServerToGlobal, setViteServerContext, setupDevToolsPlugin, stringify, toEdit, toSubmit, toggleClientConnected, toggleComponentHighLighter, toggleComponentInspectorEnabled, toggleHighPerfMode, unhighlight, updateDevToolsClientDetected, updateDevToolsState, updateTimelineLayersState };
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/escape-string-regexp@2.0.0/node_modules/escape-string-regexp/index.d.ts:2:Escape RegExp special characters.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/escape-string-regexp@2.0.0/node_modules/escape-string-regexp/index.d.ts:4:You can also use this to escape a string that is inserted into the middle of a regex, for example, into a character class.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/escape-string-regexp@2.0.0/node_modules/escape-string-regexp/index.d.ts:8:import escapeStringRegexp = require('escape-string-regexp');
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/escape-string-regexp@2.0.0/node_modules/escape-string-regexp/index.d.ts:10:const escapedString = escapeStringRegexp('How much $ for a 🦄?');
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/escape-string-regexp@2.0.0/node_modules/escape-string-regexp/index.d.ts:13:new RegExp(escapedString);
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/escape-string-regexp@2.0.0/node_modules/escape-string-regexp/index.d.ts:16:declare const escapeStringRegexp: (string: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/escape-string-regexp@2.0.0/node_modules/escape-string-regexp/index.d.ts:18:export = escapeStringRegexp;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@vue+devtools-kit@7.7.9/node_modules/@vue/devtools-kit/dist/index.d.ts:1006:declare function escape(s: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@vue+devtools-kit@7.7.9/node_modules/@vue/devtools-kit/dist/index.d.ts:1121:export { type AddInspectorApiPayload, type App, type AppRecord, type ComponentBoundingRect, type ComponentBoundingRectApiPayload, type ComponentBounds, type ComponentHighLighterOptions, type ComponentInspector, type ComponentInstance, type ComponentState, type ComponentTreeNode, type CreateRpcClientOptions, type CreateRpcServerOptions, type CustomCommand, type CustomCommandAction, type CustomInspectorNode, type CustomInspectorOptions, type CustomInspectorState, type CustomTab, type DevToolsApiType, type DevToolsAppRecords, DevToolsContextHookKeys, type DevToolsContextHookPayloads, type DevToolsContextHooks, type DevToolsEvent, type DevToolsHook, DevToolsHooks, DevToolsMessagingHookKeys, type DevToolsMessagingHookPayloads, type DevToolsMessagingHooks, type DevToolsPlugin, type DevToolsState, DevToolsV6PluginAPIHookKeys, type DevToolsV6PluginAPIHookPayloads, type DevToolsV6PluginAPIHooks, type DevtoolsContext, type EditStatePayload, INFINITY, type InspectedComponentData, type InspectorCustomState, type InspectorNodeTag, type InspectorState, type InspectorStateApiPayload, type InspectorStateEditorPayload, type InspectorTree, type InspectorTreeApiPayload, type ModuleIframeView, type ModuleSFCView, type ModuleVNodeView, type ModuleView, NAN, NEGATIVE_INFINITY, type OpenInEditorOptions, type PluginDescriptor, type PluginSetupFunction, type Presets, type PropPath, ROUTER_INFO_KEY, ROUTER_KEY, type RouterInfo, type ScreenshotData, type ScreenshotOverlayEvent, type ScreenshotOverlayRenderContext, type ScreenshotOverlayRenderResult, type ScrollToComponentOptions, type StateBase, type TimelineEvent, type TimelineEventOptions, type TimelineLayerOptions, UNDEFINED, type VueAppInstance, type VueHooks, activeAppRecord, addCustomCommand, addCustomTab, addDevToolsAppRecord, addDevToolsPluginToBuffer, addInspector, callConnectedUpdatedHook, callDevToolsPluginSetupFn, callInspectorUpdatedHook, callStateUpdatedHook, cancelInspectComponentHighLighter, createComponentsDevToolsPlugin, createDevToolsApi, createDevToolsCtxHooks, createRpcClient, createRpcProxy, createRpcServer, type customTypeEnums, devtools, devtoolsAppRecords, devtoolsContext, devtoolsInspector, devtoolsPluginBuffer, devtoolsRouter, devtoolsRouterInfo, devtoolsState, escape, formatInspectorStateValue, getActiveInspectors, getComponentInspector, getDevToolsEnv, getExtensionClientContext, getInspector, getInspectorActions, getInspectorInfo, getInspectorNodeActions, getInspectorStateValueType, getRaw, getRpcClient, getRpcServer, getViteRpcClient, getViteRpcServer, highlight, initDevTools, inspectComponentHighLighter, isPlainObject, onDevToolsClientConnected, onDevToolsConnected, openInEditor, parse, registerDevToolsPlugin, removeCustomCommand, removeDevToolsAppRecord, removeRegisteredPluginApp, resetDevToolsState, scrollToComponent, setActiveAppRecord, setActiveAppRecordId, setDevToolsEnv, setElectronClientContext, setElectronProxyContext, setElectronServerContext, setExtensionClientContext, setIframeServerContext, setOpenInEditorBaseUrl, setRpcServerToGlobal, setViteClientContext, setViteRpcClientToGlobal, setViteRpcServerToGlobal, setViteServerContext, setupDevToolsPlugin, stringify, toEdit, toSubmit, toggleClientConnected, toggleComponentHighLighter, toggleComponentInspectorEnabled, toggleHighPerfMode, unhighlight, updateDevToolsClientDetected, updateDevToolsState, updateTimelineLayersState };
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@hapi+hoek@11.0.7/node_modules/@hapi/hoek/lib/escapeJson.d.ts:1:import { escapeJson } from "./index";
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@hapi+hoek@11.0.7/node_modules/@hapi/hoek/lib/escapeJson.d.ts:3:export = escapeJson;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@hapi+hoek@11.0.7/node_modules/@hapi/hoek/lib/escapeHeaderAttribute.d.ts:1:import { escapeHeaderAttribute } from "./index";
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@hapi+hoek@11.0.7/node_modules/@hapi/hoek/lib/escapeHeaderAttribute.d.ts:3:export = escapeHeaderAttribute;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@hapi+hoek@11.0.7/node_modules/@hapi/hoek/lib/index.d.ts:374: * Escape string for Regex construction by prefixing all reserved characters with a backslash.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@hapi+hoek@11.0.7/node_modules/@hapi/hoek/lib/index.d.ts:376: * @param string - The string to be escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@hapi+hoek@11.0.7/node_modules/@hapi/hoek/lib/index.d.ts:378: * @return The escaped string.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@hapi+hoek@11.0.7/node_modules/@hapi/hoek/lib/index.d.ts:380:export function escapeRegex(string: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@hapi+hoek@11.0.7/node_modules/@hapi/hoek/lib/index.d.ts:384: * Escape string for usage as an attribute value in HTTP headers.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@hapi+hoek@11.0.7/node_modules/@hapi/hoek/lib/index.d.ts:386: * @param attribute - The string to be escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@hapi+hoek@11.0.7/node_modules/@hapi/hoek/lib/index.d.ts:388: * @return The escaped string. Will throw on invalid characters that are not supported to be escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@hapi+hoek@11.0.7/node_modules/@hapi/hoek/lib/index.d.ts:390:export function escapeHeaderAttribute(attribute: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@hapi+hoek@11.0.7/node_modules/@hapi/hoek/lib/index.d.ts:394: * Escape string for usage in HTML.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@hapi+hoek@11.0.7/node_modules/@hapi/hoek/lib/index.d.ts:396: * @param string - The string to be escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@hapi+hoek@11.0.7/node_modules/@hapi/hoek/lib/index.d.ts:398: * @return The escaped string.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@hapi+hoek@11.0.7/node_modules/@hapi/hoek/lib/index.d.ts:400:export function escapeHtml(string: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@hapi+hoek@11.0.7/node_modules/@hapi/hoek/lib/index.d.ts:404: * Escape string for usage in JSON.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@hapi+hoek@11.0.7/node_modules/@hapi/hoek/lib/index.d.ts:406: * @param string - The string to be escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@hapi+hoek@11.0.7/node_modules/@hapi/hoek/lib/index.d.ts:408: * @return The escaped string.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@hapi+hoek@11.0.7/node_modules/@hapi/hoek/lib/index.d.ts:410:export function escapeJson(string: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@hapi+hoek@11.0.7/node_modules/@hapi/hoek/lib/escapeRegex.d.ts:1:import { escapeRegex } from "./index";
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@hapi+hoek@11.0.7/node_modules/@hapi/hoek/lib/escapeRegex.d.ts:3:export = escapeRegex;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@hapi+hoek@11.0.7/node_modules/@hapi/hoek/lib/escapeHtml.d.ts:1:import { escapeHtml } from "./index";
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@hapi+hoek@11.0.7/node_modules/@hapi/hoek/lib/escapeHtml.d.ts:3:export = escapeHtml;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@vue+shared@3.5.24/node_modules/@vue/shared/dist/shared.d.ts:296:export declare function escapeHtml(string: unknown): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@vue+shared@3.5.24/node_modules/@vue/shared/dist/shared.d.ts:297:export declare function escapeHtmlComment(src: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@vue+shared@3.5.24/node_modules/@vue/shared/dist/shared.d.ts:298:export declare const cssVarNameEscapeSymbolsRE: RegExp;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@vue+shared@3.5.24/node_modules/@vue/shared/dist/shared.d.ts:299:export declare function getEscapedCssVarName(key: string, doubleEscape: boolean): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+estree@1.0.8/node_modules/@types/estree/index.d.ts:547: /** It is null when the template literal is tagged and the text has an invalid escape (e.g. - tag`\unicode and \u{55}`) */
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/ipfs-unixfs-importer@15.4.0/node_modules/ipfs-unixfs-importer/src/utils/to-path-components.ts:2: // split on / unless escaped with \
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/eslint-plugin-vue@10.5.1_@typescript-eslint+parser@8.47.0_eslint@9.39.1_jiti@2.6.1__typ_c86146b44060697f2abafe383d9918fe/node_modules/eslint-plugin-vue/lib/eslint-typegen.d.ts:1472: avoidEscape?: boolean
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/eslint-plugin-vue@10.5.1_@typescript-eslint+parser@8.47.0_eslint@9.39.1_jiti@2.6.1__typ_c86146b44060697f2abafe383d9918fe/node_modules/eslint-plugin-vue/lib/eslint-typegen.d.ts:2266: ignoreStringEscape?: boolean
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/eslint-plugin-vue@10.5.1_@typescript-eslint+parser@8.47.0_eslint@9.39.1_jiti@2.6.1__typ_c86146b44060697f2abafe383d9918fe/node_modules/eslint-plugin-vue/lib/eslint-typegen.d.ts:2271: ignoreStringEscape?: boolean
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/ts-api-utils@2.1.0_typescript@5.9.3/node_modules/ts-api-utils/lib/index.d.ts:200: * An `Identifier` with an `escapedText` value of `"const"`.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/ts-api-utils@2.1.0_typescript@5.9.3/node_modules/ts-api-utils/lib/index.d.ts:204: escapedText: "const" & ts.__String;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/ts-api-utils@2.1.0_typescript@5.9.3/node_modules/ts-api-utils/lib/index.d.ts:2070: * getPropertyOfType(type, property.getEscapedName());
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/ts-api-utils@2.1.0_typescript@5.9.3/node_modules/ts-api-utils/lib/index.d.ts:2825: * if (isPropertyReadonlyInType(type, property.getEscapedName(), typeChecker)) {
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/rollup@4.53.3/node_modules/rollup/dist/rollup.d.ts:832: sanitizeFileName?: boolean | ((fileName: string) => string) | undefined;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/rollup@4.53.3/node_modules/rollup/dist/rollup.d.ts:888: sanitizeFileName: (fileName: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@jest+schemas@29.6.3/node_modules/@jest/schemas/build/index.d.ts:18: escapeRegex: TReadonlyOptional<TBoolean>;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@jest+schemas@29.6.3/node_modules/@jest/schemas/build/index.d.ts:19: escapeString: TReadonlyOptional<TBoolean>;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@jest+schemas@29.6.3/node_modules/@jest/schemas/build/index.d.ts:41: escapeRegex: TReadonlyOptional<TBoolean>;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@jest+schemas@29.6.3/node_modules/@jest/schemas/build/index.d.ts:42: escapeString: TReadonlyOptional<TBoolean>;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@vue+language-core@3.1.5_typescript@5.9.3/node_modules/@vue/language-core/lib/codegen/utils/escaped.d.ts:2:export declare function generateEscaped(text: string, source: string, offset: number, features: VueCodeInformation, escapeTarget: RegExp): Generator<Code>;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/type-fest@0.21.3/node_modules/type-fest/source/union-to-intersection.d.ts:10:type Union = {the(): void} | {great(arg: string): void} | {escape: boolean};
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/type-fest@0.21.3/node_modules/type-fest/source/union-to-intersection.d.ts:13://=> {the(): void; great(arg: string): void; escape: boolean};
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@vitest+pretty-format@3.2.4/node_modules/@vitest/pretty-format/dist/index.d.ts:47: escapeRegex?: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@vitest+pretty-format@3.2.4/node_modules/@vitest/pretty-format/dist/index.d.ts:48: escapeString?: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@vitest+pretty-format@3.2.4/node_modules/@vitest/pretty-format/dist/index.d.ts:64: escapeRegex: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@vitest+pretty-format@3.2.4/node_modules/@vitest/pretty-format/dist/index.d.ts:65: escapeString: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@typescript-eslint+typescript-estree@8.47.0_typescript@5.9.3/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/resolveProjectList.d.ts:5: * Normalizes, sanitizes, resolves and filters the provided project paths
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@typescript-eslint+typescript-estree@8.47.0_typescript@5.9.3/node_modules/@typescript-eslint/typescript-estree/dist/node-utils.d.ts:106: * Unescape the text content of string literals, e.g. &amp; -> &
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@typescript-eslint+typescript-estree@8.47.0_typescript@5.9.3/node_modules/@typescript-eslint/typescript-estree/dist/node-utils.d.ts:107: * @param text The escaped string literal text.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@typescript-eslint+typescript-estree@8.47.0_typescript@5.9.3/node_modules/@typescript-eslint/typescript-estree/dist/node-utils.d.ts:108: * @returns The unescaped string literal text.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@typescript-eslint+typescript-estree@8.47.0_typescript@5.9.3/node_modules/@typescript-eslint/typescript-estree/dist/node-utils.d.ts:110:export declare function unescapeStringLiteralText(text: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/execa@5.1.1/node_modules/execa/index.d.ts:257: This is not escaped and should not be executed directly as a process, including using `execa()` or `execa.command()`.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/execa@5.1.1/node_modules/execa/index.d.ts:262: Same as `command` but escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/execa@5.1.1/node_modules/execa/index.d.ts:267: escapedCommand: string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/execa@5.1.1/node_modules/execa/index.d.ts:508: If the file or an argument contains spaces, they must be escaped with backslashes. This matters especially if `command` is not a constant but a variable, for example with `__dirname` or `process.cwd()`. Except for spaces, no escaping/quoting is needed.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/string-width@5.1.2/node_modules/string-width/index.d.ts:13:Some Unicode characters are [fullwidth](https://en.wikipedia.org/wiki/Halfwidth_and_fullwidth_forms) and use double the normal width. [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) are stripped and doesn't affect the width.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/wrap-ansi@8.1.0/node_modules/wrap-ansi/index.d.ts:27:@param string - String with ANSI escape codes. Like one styled by [`chalk`](https://github.com/chalk/chalk). Newline characters will be normalized to `\n`.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+chai@5.2.3/node_modules/@types/chai/index.d.ts:1025: * [] and . in property names can be escaped using double backslashes.Asserts that haystack includes needle.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+chai@5.2.3/node_modules/@types/chai/index.d.ts:1028: * [] and . in property names can be escaped using double backslashes.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+chai@5.2.3/node_modules/@types/chai/index.d.ts:1040: * [] and . in property names can be escaped using double backslashes.Asserts that haystack includes needle.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+chai@5.2.3/node_modules/@types/chai/index.d.ts:1043: * [] and . in property names can be escaped using double backslashes.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+chai@5.2.3/node_modules/@types/chai/index.d.ts:1055: * [] and . in property names can be escaped using double backslashes.Asserts that haystack includes needle.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+chai@5.2.3/node_modules/@types/chai/index.d.ts:1058: * [] and . in property names can be escaped using double backslashes.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+chai@5.2.3/node_modules/@types/chai/index.d.ts:1070: * [] and . in property names can be escaped using double backslashes.Asserts that haystack includes needle.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+chai@5.2.3/node_modules/@types/chai/index.d.ts:1073: * [] and . in property names can be escaped using double backslashes.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/repl.d.ts:33: * ANSI/VT100 escape codes written to it.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/readline.d.ts:336: * and have ANSI/VT100 escape codes written to it.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/readline.d.ts:383: escapeCodeTimeout?: number | undefined;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/querystring.d.ts:18: * @default `querystring.escape()`
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/querystring.d.ts:30: * @default `querystring.unescape()`
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/querystring.d.ts:124: * The `querystring.escape()` method performs URL percent-encoding on the given `str` in a manner that is optimized for the specific requirements of URL
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/querystring.d.ts:127: * The `querystring.escape()` method is used by `querystring.stringify()` and is
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/querystring.d.ts:130: * necessary by assigning `querystring.escape` to an alternative function.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/querystring.d.ts:133: function escape(str: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/querystring.d.ts:135: * The `querystring.unescape()` method performs decoding of URL percent-encoded
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/querystring.d.ts:138: * The `querystring.unescape()` method is used by `querystring.parse()` and is
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/querystring.d.ts:141: * necessary by assigning `querystring.unescape` to an alternative function.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/querystring.d.ts:143: * By default, the `querystring.unescape()` method will attempt to use the
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/querystring.d.ts:148: function unescape(str: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/util.d.ts:1155: * Returns `str` with any ANSI escape codes removed.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/child_process.d.ts:693: * **If the `shell` option is enabled, do not pass unsanitized user input to this**
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/child_process.d.ts:925: * // The $HOME variable is escaped in the first instance, but not in the second.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/child_process.d.ts:928: * **Never pass unsanitized user input to this function. Any input containing shell**
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/child_process.d.ts:1117: * **If the `shell` option is enabled, do not pass unsanitized user input to this**
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/child_process.d.ts:1352: * **If the `shell` option is enabled, do not pass unsanitized user input to this**
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/child_process.d.ts:1414: * **Never pass unsanitized user input to this function. Any input containing shell**
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/child_process.d.ts:1445: * **If the `shell` option is enabled, do not pass unsanitized user input to this**
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+istanbul-lib-report@3.0.3/node_modules/@types/istanbul-lib-report/index.d.ts:71: * appropriate escape sequences.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+babel__generator@7.27.0/node_modules/@types/babel__generator/index.d.ts:97: * string are escaped as \', so that the output can be used in a string literal wrapped in single quotes.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+babel__generator@7.27.0/node_modules/@types/babel__generator/index.d.ts:117: * astral Unicode symbols in the input are escaped using ECMAScript 6 Unicode code point escape sequences
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+babel__generator@7.27.0/node_modules/@types/babel__generator/index.d.ts:118: * instead of using separate escape sequences for each surrogate half. If backwards compatibility with ES5
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+babel__generator@7.27.0/node_modules/@types/babel__generator/index.d.ts:125: * The escapeEverything option takes a boolean value (true or false), and defaults to false (disabled). When
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+babel__generator@7.27.0/node_modules/@types/babel__generator/index.d.ts:126: * enabled, all the symbols in the output are escaped — even printable ASCII symbols.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+babel__generator@7.27.0/node_modules/@types/babel__generator/index.d.ts:128: escapeEverything?: boolean | undefined;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+babel__generator@7.27.0/node_modules/@types/babel__generator/index.d.ts:132: * only a limited set of symbols in the output are escaped: \0, \b, \t, \n, \f, \r, \\, \u2028, \u2029.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+babel__generator@7.27.0/node_modules/@types/babel__generator/index.d.ts:138: * enabled, occurrences of </script and </style in the output are escaped as <\/script and <\/style, and <!--
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+babel__generator@7.27.0/node_modules/@types/babel__generator/index.d.ts:139: * is escaped as \x3C!-- (or \u003C!-- when the json option is enabled). This setting is useful when jsescs
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+babel__generator@7.27.0/node_modules/@types/babel__generator/index.d.ts:164: * output is valid JSON. Hexadecimal character escape sequences and the \v or \0 escape sequences are not used.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@types+babel__generator@7.27.0/node_modules/@types/babel__generator/index.d.ts:172: * any alphabetical hexadecimal digits in escape sequences as well as any hexadecimal integer literals (see the
/home/administrator/projects/coppertone.tech/frontend/node_modules/@hapi/address/src/uri.ts:1:import { assert, escapeRegex } from '@hapi/hoek';
/home/administrator/projects/coppertone.tech/frontend/node_modules/@hapi/address/src/uri.ts:231: selections.push(escapeRegex(scheme));
/home/administrator/projects/coppertone.tech/frontend/node_modules/@hapi/hoek/lib/escapeJson.d.ts:1:import { escapeJson } from "./index";
/home/administrator/projects/coppertone.tech/frontend/node_modules/@hapi/hoek/lib/escapeJson.d.ts:3:export = escapeJson;
/home/administrator/projects/coppertone.tech/frontend/node_modules/@hapi/hoek/lib/escapeHeaderAttribute.d.ts:1:import { escapeHeaderAttribute } from "./index";
/home/administrator/projects/coppertone.tech/frontend/node_modules/@hapi/hoek/lib/escapeHeaderAttribute.d.ts:3:export = escapeHeaderAttribute;
/home/administrator/projects/coppertone.tech/frontend/node_modules/@hapi/hoek/lib/index.d.ts:374: * Escape string for Regex construction by prefixing all reserved characters with a backslash.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@hapi/hoek/lib/index.d.ts:376: * @param string - The string to be escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@hapi/hoek/lib/index.d.ts:378: * @return The escaped string.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@hapi/hoek/lib/index.d.ts:380:export function escapeRegex(string: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/@hapi/hoek/lib/index.d.ts:384: * Escape string for usage as an attribute value in HTTP headers.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@hapi/hoek/lib/index.d.ts:386: * @param attribute - The string to be escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@hapi/hoek/lib/index.d.ts:388: * @return The escaped string. Will throw on invalid characters that are not supported to be escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@hapi/hoek/lib/index.d.ts:390:export function escapeHeaderAttribute(attribute: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/@hapi/hoek/lib/index.d.ts:394: * Escape string for usage in HTML.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@hapi/hoek/lib/index.d.ts:396: * @param string - The string to be escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@hapi/hoek/lib/index.d.ts:398: * @return The escaped string.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@hapi/hoek/lib/index.d.ts:400:export function escapeHtml(string: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/@hapi/hoek/lib/index.d.ts:404: * Escape string for usage in JSON.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@hapi/hoek/lib/index.d.ts:406: * @param string - The string to be escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@hapi/hoek/lib/index.d.ts:408: * @return The escaped string.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@hapi/hoek/lib/index.d.ts:410:export function escapeJson(string: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/@hapi/hoek/lib/escapeRegex.d.ts:1:import { escapeRegex } from "./index";
/home/administrator/projects/coppertone.tech/frontend/node_modules/@hapi/hoek/lib/escapeRegex.d.ts:3:export = escapeRegex;
/home/administrator/projects/coppertone.tech/frontend/node_modules/@hapi/hoek/lib/escapeHtml.d.ts:1:import { escapeHtml } from "./index";
/home/administrator/projects/coppertone.tech/frontend/node_modules/@hapi/hoek/lib/escapeHtml.d.ts:3:export = escapeHtml;
/home/administrator/projects/coppertone.tech/frontend/node_modules/@types/estree/index.d.ts:547: /** It is null when the template literal is tagged and the text has an invalid escape (e.g. - tag`\unicode and \u{55}`) */
/home/administrator/projects/coppertone.tech/frontend/node_modules/@types/mdurl/build/index.cjs.d.ts:42: * @param keepEscaped don't encode '%' in a correct escape sequence (default: true)
/home/administrator/projects/coppertone.tech/frontend/node_modules/@types/mdurl/build/index.cjs.d.ts:44: (str: string, exclude?: string, keepEscaped?: boolean): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/@types/chai/index.d.ts:1025: * [] and . in property names can be escaped using double backslashes.Asserts that haystack includes needle.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@types/chai/index.d.ts:1028: * [] and . in property names can be escaped using double backslashes.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@types/chai/index.d.ts:1040: * [] and . in property names can be escaped using double backslashes.Asserts that haystack includes needle.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@types/chai/index.d.ts:1043: * [] and . in property names can be escaped using double backslashes.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@types/chai/index.d.ts:1055: * [] and . in property names can be escaped using double backslashes.Asserts that haystack includes needle.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@types/chai/index.d.ts:1058: * [] and . in property names can be escaped using double backslashes.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@types/chai/index.d.ts:1070: * [] and . in property names can be escaped using double backslashes.Asserts that haystack includes needle.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@types/chai/index.d.ts:1073: * [] and . in property names can be escaped using double backslashes.
/home/administrator/projects/coppertone.tech/frontend/node_modules/strip-ansi-cjs/index.d.ts:2:Strip [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) from a string.
/home/administrator/projects/coppertone.tech/frontend/node_modules/strip-ansi/index.d.ts:2:Strip [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) from a string.
/home/administrator/projects/coppertone.tech/frontend/node_modules/es-module-lexer/types/lexer.d.ts:41: * To handle escape sequences in specifier strings, the .n field of imported specifiers will be provided where possible.
/home/administrator/projects/coppertone.tech/frontend/node_modules/joi/lib/index.d.ts:36: * when true, error message templates will escape special characters to HTML entities, for security purposes.
/home/administrator/projects/coppertone.tech/frontend/node_modules/joi/lib/index.d.ts:40: escapeHtml?: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/joi/lib/index.d.ts:192: * Variables in double braces `{{var}}` are HTML escaped if the option `errors.escapeHtml` is set to true.
/home/administrator/projects/coppertone.tech/frontend/node_modules/joi/lib/index.d.ts:431: * Can be an Array or String (strings are automatically escaped for use in a Regular Expression).
/home/administrator/projects/coppertone.tech/frontend/node_modules/joi/lib/index.d.ts:1317: * Marks a key to be removed from a resulting object or array after validation. Used to sanitize output.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/vite/dist/node/index.d.ts:2601: * attribute values will be escaped automatically if needed
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/jsdom/node_modules/parse5/dist/tokenizer/index.d.ts:190: protected _stateScriptDataEscapeStart(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/jsdom/node_modules/parse5/dist/tokenizer/index.d.ts:191: protected _stateScriptDataEscapeStartDash(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/jsdom/node_modules/parse5/dist/tokenizer/index.d.ts:192: protected _stateScriptDataEscaped(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/jsdom/node_modules/parse5/dist/tokenizer/index.d.ts:193: protected _stateScriptDataEscapedDash(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/jsdom/node_modules/parse5/dist/tokenizer/index.d.ts:194: protected _stateScriptDataEscapedDashDash(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/jsdom/node_modules/parse5/dist/tokenizer/index.d.ts:195: protected _stateScriptDataEscapedLessThanSign(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/jsdom/node_modules/parse5/dist/tokenizer/index.d.ts:196: protected _stateScriptDataEscapedEndTagOpen(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/jsdom/node_modules/parse5/dist/tokenizer/index.d.ts:197: protected _stateScriptDataEscapedEndTagName(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/jsdom/node_modules/parse5/dist/tokenizer/index.d.ts:198: protected _stateScriptDataDoubleEscapeStart(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/jsdom/node_modules/parse5/dist/tokenizer/index.d.ts:199: protected _stateScriptDataDoubleEscaped(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/jsdom/node_modules/parse5/dist/tokenizer/index.d.ts:200: protected _stateScriptDataDoubleEscapedDash(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/jsdom/node_modules/parse5/dist/tokenizer/index.d.ts:201: protected _stateScriptDataDoubleEscapedDashDash(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/jsdom/node_modules/parse5/dist/tokenizer/index.d.ts:202: protected _stateScriptDataDoubleEscapedLessThanSign(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/jsdom/node_modules/parse5/dist/tokenizer/index.d.ts:203: protected _stateScriptDataDoubleEscapeEnd(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/jsdom/node_modules/parse5/dist/serializer/index.d.ts:12: * to `true`, `noscript` element content will not be escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/jsdom/node_modules/parse5/dist/common/html.d.ts:289:export declare function hasUnescapedText(tn: string, scriptingEnabled: boolean): boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/markdown-it/node_modules/entities/lib/esm/index.d.ts:12: * XML will be escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/markdown-it/node_modules/entities/lib/esm/index.d.ts:18: * be escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/markdown-it/node_modules/entities/lib/esm/index.d.ts:27: * Encode all characters that have to be escaped in HTML attributes,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/markdown-it/node_modules/entities/lib/esm/index.d.ts:32: * Encode all characters that have to be escaped in HTML text,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/markdown-it/node_modules/entities/lib/esm/index.d.ts:93:export { encodeXML, escape, escapeUTF8, escapeAttribute, escapeText, } from "./escape.js";
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/markdown-it/node_modules/entities/lib/esm/escape.d.ts:15: * Have a look at `escapeUTF8` if you want a more concise output at the expense
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/markdown-it/node_modules/entities/lib/esm/escape.d.ts:18: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/markdown-it/node_modules/entities/lib/esm/escape.d.ts:20:export declare const escape: typeof encodeXML;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/markdown-it/node_modules/entities/lib/esm/escape.d.ts:26: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/markdown-it/node_modules/entities/lib/esm/escape.d.ts:28:export declare const escapeUTF8: (data: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/markdown-it/node_modules/entities/lib/esm/escape.d.ts:30: * Encodes all characters that have to be escaped in HTML attributes,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/markdown-it/node_modules/entities/lib/esm/escape.d.ts:33: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/markdown-it/node_modules/entities/lib/esm/escape.d.ts:35:export declare const escapeAttribute: (data: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/markdown-it/node_modules/entities/lib/esm/escape.d.ts:37: * Encodes all characters that have to be escaped in HTML text,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/markdown-it/node_modules/entities/lib/esm/escape.d.ts:40: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/markdown-it/node_modules/entities/lib/esm/escape.d.ts:42:export declare const escapeText: (data: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/markdown-it/node_modules/entities/lib/esm/escape.d.ts:43://# sourceMappingURL=escape.d.ts.map
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/markdown-it/node_modules/entities/lib/index.d.ts:12: * XML will be escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/markdown-it/node_modules/entities/lib/index.d.ts:18: * be escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/markdown-it/node_modules/entities/lib/index.d.ts:27: * Encode all characters that have to be escaped in HTML attributes,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/markdown-it/node_modules/entities/lib/index.d.ts:32: * Encode all characters that have to be escaped in HTML text,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/markdown-it/node_modules/entities/lib/index.d.ts:93:export { encodeXML, escape, escapeUTF8, escapeAttribute, escapeText, } from "./escape.js";
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/markdown-it/node_modules/entities/lib/escape.d.ts:15: * Have a look at `escapeUTF8` if you want a more concise output at the expense
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/markdown-it/node_modules/entities/lib/escape.d.ts:18: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/markdown-it/node_modules/entities/lib/escape.d.ts:20:export declare const escape: typeof encodeXML;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/markdown-it/node_modules/entities/lib/escape.d.ts:26: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/markdown-it/node_modules/entities/lib/escape.d.ts:28:export declare const escapeUTF8: (data: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/markdown-it/node_modules/entities/lib/escape.d.ts:30: * Encodes all characters that have to be escaped in HTML attributes,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/markdown-it/node_modules/entities/lib/escape.d.ts:33: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/markdown-it/node_modules/entities/lib/escape.d.ts:35:export declare const escapeAttribute: (data: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/markdown-it/node_modules/entities/lib/escape.d.ts:37: * Encodes all characters that have to be escaped in HTML text,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/markdown-it/node_modules/entities/lib/escape.d.ts:40: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/markdown-it/node_modules/entities/lib/escape.d.ts:42:export declare const escapeText: (data: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/markdown-it/node_modules/entities/lib/escape.d.ts:43://# sourceMappingURL=escape.d.ts.map
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/prettier/index.d.ts:917: unescapeUnnecessaryEscapes?: boolean | undefined,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/vite-plugin-vue-devtools/node_modules/@vue/devtools-kit/dist/index.d.ts:1055:declare function escape(s: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/vite-plugin-vue-devtools/node_modules/@vue/devtools-kit/dist/index.d.ts:1172:export { AddInspectorApiPayload, App, AppRecord, ComponentBoundingRect, ComponentBoundingRectApiPayload, ComponentBounds, ComponentHighLighterOptions, ComponentInspector, ComponentInstance, ComponentState, ComponentTreeNode, CreateRpcClientOptions, CreateRpcServerOptions, CustomCommand, CustomCommandAction, CustomInspectorNode, CustomInspectorOptions, CustomInspectorState, CustomTab, DevToolsApiType, DevToolsAppRecords, DevToolsContextHookKeys, DevToolsContextHookPayloads, DevToolsContextHooks, DevToolsEvent, DevToolsHook, DevToolsHooks, DevToolsMessagingHookKeys, DevToolsMessagingHookPayloads, DevToolsMessagingHooks, DevToolsPlugin, DevToolsState, DevToolsV6PluginAPIHookKeys, DevToolsV6PluginAPIHookPayloads, DevToolsV6PluginAPIHooks, DevtoolsContext, EditStatePayload, INFINITY, InspectedComponentData, InspectorCustomState, InspectorNodeTag, InspectorState, InspectorStateApiPayload, InspectorStateEditorPayload, InspectorTree, InspectorTreeApiPayload, ModuleIframeView, ModuleSFCView, ModuleVNodeView, ModuleView, NAN, NEGATIVE_INFINITY, OpenInEditorOptions, PluginDescriptor, PluginSetupFunction, Presets, PropPath, ROUTER_INFO_KEY, ROUTER_KEY, type Router, RouterInfo, ScreenshotData, ScreenshotOverlayEvent, ScreenshotOverlayRenderContext, ScreenshotOverlayRenderResult, ScrollToComponentOptions, StateBase, TimelineEvent, TimelineEventOptions, TimelineLayerOptions, UNDEFINED, VueAppInstance, VueHooks, activeAppRecord, addCustomCommand, addCustomTab, addDevToolsAppRecord, addDevToolsPluginToBuffer, addInspector, callConnectedUpdatedHook, callDevToolsPluginSetupFn, callInspectorUpdatedHook, callStateUpdatedHook, cancelInspectComponentHighLighter, createComponentsDevToolsPlugin, createDevToolsApi, createDevToolsCtxHooks, createRpcClient, createRpcProxy, createRpcServer, customTypeEnums, devtools, devtoolsAppRecords, devtoolsContext, devtoolsInspector, devtoolsPluginBuffer, devtoolsRouter, devtoolsRouterInfo, devtoolsState, escape, formatInspectorStateValue, getActiveInspectors, getComponentInspector, getDevToolsEnv, getExtensionClientContext, getInspector, getInspectorActions, getInspectorInfo, getInspectorNodeActions, getInspectorStateValueType, getRaw, getRpcClient, getRpcServer, getViteRpcClient, getViteRpcServer, highlight, initDevTools, inspectComponentHighLighter, isPlainObject, onDevToolsClientConnected, onDevToolsConnected, openInEditor, parse, registerDevToolsPlugin, removeCustomCommand, removeDevToolsAppRecord, removeRegisteredPluginApp, resetDevToolsState, scrollToComponent, setActiveAppRecord, setActiveAppRecordId, setDevToolsEnv, setElectronClientContext, setElectronProxyContext, setElectronServerContext, setExtensionClientContext, setIframeServerContext, setOpenInEditorBaseUrl, setRpcServerToGlobal, setViteClientContext, setViteRpcClientToGlobal, setViteRpcServerToGlobal, setViteServerContext, setupDevToolsPlugin, stringify, toEdit, toSubmit, toggleClientConnected, toggleComponentHighLighter, toggleComponentInspectorEnabled, toggleHighPerfMode, unhighlight, updateDevToolsClientDetected, updateDevToolsState, updateTimelineLayersState };
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/start-server-and-test/node_modules/execa/index.d.ts:257: This is not escaped and should not be executed directly as a process, including using `execa()` or `execa.command()`.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/start-server-and-test/node_modules/execa/index.d.ts:262: Same as `command` but escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/start-server-and-test/node_modules/execa/index.d.ts:267: escapedCommand: string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/start-server-and-test/node_modules/execa/index.d.ts:508: If the file or an argument contains spaces, they must be escaped with backslashes. This matters especially if `command` is not a constant but a variable, for example with `__dirname` or `process.cwd()`. Except for spaces, no escaping/quoting is needed.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint-plugin-cypress/node_modules/globals/index.d.ts:1226: readonly 'escape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint-plugin-cypress/node_modules/globals/index.d.ts:1268: readonly 'unescape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint-plugin-cypress/node_modules/globals/index.d.ts:1362: readonly 'escape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint-plugin-cypress/node_modules/globals/index.d.ts:1399: readonly 'unescape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint-plugin-cypress/node_modules/globals/index.d.ts:1416: readonly 'escape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint-plugin-cypress/node_modules/globals/index.d.ts:1453: readonly 'unescape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint-plugin-cypress/node_modules/globals/index.d.ts:1471: readonly 'escape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint-plugin-cypress/node_modules/globals/index.d.ts:1509: readonly 'unescape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint-plugin-cypress/node_modules/globals/index.d.ts:1527: readonly 'escape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint-plugin-cypress/node_modules/globals/index.d.ts:1565: readonly 'unescape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint-plugin-cypress/node_modules/globals/index.d.ts:1583: readonly 'escape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint-plugin-cypress/node_modules/globals/index.d.ts:1621: readonly 'unescape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint-plugin-cypress/node_modules/globals/index.d.ts:1642: readonly 'escape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint-plugin-cypress/node_modules/globals/index.d.ts:1681: readonly 'unescape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint-plugin-cypress/node_modules/globals/index.d.ts:1703: readonly 'escape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint-plugin-cypress/node_modules/globals/index.d.ts:1743: readonly 'unescape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint-plugin-cypress/node_modules/globals/index.d.ts:1766: readonly 'escape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint-plugin-cypress/node_modules/globals/index.d.ts:1806: readonly 'unescape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint-plugin-cypress/node_modules/globals/index.d.ts:1829: readonly 'escape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint-plugin-cypress/node_modules/globals/index.d.ts:1869: readonly 'unescape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint-plugin-cypress/node_modules/globals/index.d.ts:1892: readonly 'escape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint-plugin-cypress/node_modules/globals/index.d.ts:1932: readonly 'unescape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint-plugin-cypress/node_modules/globals/index.d.ts:1955: readonly 'escape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint-plugin-cypress/node_modules/globals/index.d.ts:1997: readonly 'unescape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint-plugin-cypress/node_modules/globals/index.d.ts:2020: readonly 'escape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint-plugin-cypress/node_modules/globals/index.d.ts:2062: readonly 'unescape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint-plugin-cypress/node_modules/globals/index.d.ts:2078: readonly 'escape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint-plugin-cypress/node_modules/globals/index.d.ts:2098: readonly 'unescape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint-plugin-cypress/node_modules/globals/index.d.ts:2111: readonly 'escape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint-plugin-cypress/node_modules/globals/index.d.ts:2132: readonly 'unescape': false;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/@types/jsdom/base.d.ts:218: escape(string: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/@types/jsdom/base.d.ts:219: unescape(string: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/@types/markdown-it/dist/index.cjs.d.ts:649: unescapeMd(str: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/@types/markdown-it/dist/index.cjs.d.ts:651: unescapeAll(str: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/@types/markdown-it/dist/index.cjs.d.ts:657: escapeHtml(str: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/@types/markdown-it/dist/index.cjs.d.ts:688: escapeRE(str: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/@types/markdown-it/dist/index.cjs.d.ts:718: * if `ok`, it's the unescaped title
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/@types/markdown-it/dist/index.cjs.d.ts:764: * That's not safe! You may need external sanitizer to protect output from XSS.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/@types/markdown-it/dist/index.cjs.d.ts:815: * Highlighter `function (str, lang, attrs)` should return escaped HTML. It can
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/@types/markdown-it/dist/index.cjs.d.ts:816: * also return empty string if the source was not changed and should be escaped
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/@types/markdown-it/dist/index.cjs.d.ts:1229: * return '<pre class="hljs"><code>' + md.utils.escapeHtml(str) + '</code></pre>';
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/@types/node/repl.d.ts:33: * ANSI/VT100 escape codes written to it.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/@types/node/readline.d.ts:336: * and have ANSI/VT100 escape codes written to it.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/@types/node/readline.d.ts:383: escapeCodeTimeout?: number | undefined;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/@types/node/querystring.d.ts:18: * @default `querystring.escape()`
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/@types/node/querystring.d.ts:30: * @default `querystring.unescape()`
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/@types/node/querystring.d.ts:124: * The `querystring.escape()` method performs URL percent-encoding on the given `str` in a manner that is optimized for the specific requirements of URL
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/@types/node/querystring.d.ts:127: * The `querystring.escape()` method is used by `querystring.stringify()` and is
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/@types/node/querystring.d.ts:130: * necessary by assigning `querystring.escape` to an alternative function.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/@types/node/querystring.d.ts:133: function escape(str: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/@types/node/querystring.d.ts:135: * The `querystring.unescape()` method performs decoding of URL percent-encoded
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/@types/node/querystring.d.ts:138: * The `querystring.unescape()` method is used by `querystring.parse()` and is
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/@types/node/querystring.d.ts:141: * necessary by assigning `querystring.unescape` to an alternative function.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/@types/node/querystring.d.ts:143: * By default, the `querystring.unescape()` method will attempt to use the
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/@types/node/querystring.d.ts:148: function unescape(str: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/@types/node/util.d.ts:1155: * Returns `str` with any ANSI escape codes removed.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/@types/node/child_process.d.ts:693: * **If the `shell` option is enabled, do not pass unsanitized user input to this**
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/@types/node/child_process.d.ts:925: * // The $HOME variable is escaped in the first instance, but not in the second.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/@types/node/child_process.d.ts:928: * **Never pass unsanitized user input to this function. Any input containing shell**
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/@types/node/child_process.d.ts:1117: * **If the `shell` option is enabled, do not pass unsanitized user input to this**
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/@types/node/child_process.d.ts:1352: * **If the `shell` option is enabled, do not pass unsanitized user input to this**
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/@types/node/child_process.d.ts:1414: * **Never pass unsanitized user input to this function. Any input containing shell**
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/@types/node/child_process.d.ts:1445: * **If the `shell` option is enabled, do not pass unsanitized user input to this**
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint-plugin-vue/lib/eslint-typegen.d.ts:1472: avoidEscape?: boolean
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint-plugin-vue/lib/eslint-typegen.d.ts:2266: ignoreStringEscape?: boolean
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint-plugin-vue/lib/eslint-typegen.d.ts:2271: ignoreStringEscape?: boolean
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/dompurify/dist/purify.cjs.d.ts:114: * Sanitize a node "in place", which is much faster depending on how you use DOMPurify.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/dompurify/dist/purify.cjs.d.ts:134: * Change the parser type so sanitized data is treated as XML and not as HTML, which is the default.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/dompurify/dist/purify.cjs.d.ts:247: * @returns Sanitized TrustedHTML.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/dompurify/dist/purify.cjs.d.ts:249: sanitize(dirty: string | Node, cfg: Config & {
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/dompurify/dist/purify.cjs.d.ts:257: * @returns Sanitized DOM node.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/dompurify/dist/purify.cjs.d.ts:259: sanitize(dirty: Node, cfg: Config & {
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/dompurify/dist/purify.cjs.d.ts:267: * @returns Sanitized DOM node.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/dompurify/dist/purify.cjs.d.ts:269: sanitize(dirty: string | Node, cfg: Config & {
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/dompurify/dist/purify.cjs.d.ts:277: * @returns Sanitized document fragment.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/dompurify/dist/purify.cjs.d.ts:279: sanitize(dirty: string | Node, cfg: Config & {
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/dompurify/dist/purify.cjs.d.ts:287: * @returns Sanitized string.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/dompurify/dist/purify.cjs.d.ts:289: sanitize(dirty: string | Node, cfg?: Config): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/dompurify/dist/purify.cjs.d.ts:327: addHook(entryPoint: 'uponSanitizeElement', hookFunction: UponSanitizeElementHook): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/dompurify/dist/purify.cjs.d.ts:334: addHook(entryPoint: 'uponSanitizeAttribute', hookFunction: UponSanitizeAttributeHook): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/dompurify/dist/purify.cjs.d.ts:370: removeHook(entryPoint: 'uponSanitizeElement', hookFunction?: UponSanitizeElementHook): UponSanitizeElementHook | undefined;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/dompurify/dist/purify.cjs.d.ts:379: removeHook(entryPoint: 'uponSanitizeAttribute', hookFunction?: UponSanitizeAttributeHook): UponSanitizeAttributeHook | undefined;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/dompurify/dist/purify.cjs.d.ts:413:type BasicHookName = 'beforeSanitizeElements' | 'afterSanitizeElements' | 'uponSanitizeShadowNode';
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/dompurify/dist/purify.cjs.d.ts:414:type ElementHookName = 'beforeSanitizeAttributes' | 'afterSanitizeAttributes';
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/dompurify/dist/purify.cjs.d.ts:415:type DocumentFragmentHookName = 'beforeSanitizeShadowDOM' | 'afterSanitizeShadowDOM';
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/dompurify/dist/purify.cjs.d.ts:416:type UponSanitizeElementHookName = 'uponSanitizeElement';
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/dompurify/dist/purify.cjs.d.ts:417:type UponSanitizeAttributeHookName = 'uponSanitizeAttribute';
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/dompurify/dist/purify.cjs.d.ts:418:type HookName = BasicHookName | ElementHookName | DocumentFragmentHookName | UponSanitizeElementHookName | UponSanitizeAttributeHookName;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/dompurify/dist/purify.cjs.d.ts:422:type UponSanitizeElementHook = (this: DOMPurify, currentNode: Node, hookEvent: UponSanitizeElementHookEvent, config: Config) => void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/dompurify/dist/purify.cjs.d.ts:423:type UponSanitizeAttributeHook = (this: DOMPurify, currentNode: Element, hookEvent: UponSanitizeAttributeHookEvent, config: Config) => void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/dompurify/dist/purify.cjs.d.ts:424:interface UponSanitizeElementHookEvent {
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/dompurify/dist/purify.cjs.d.ts:428:interface UponSanitizeAttributeHookEvent {
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/dompurify/dist/purify.cjs.d.ts:443:export { type Config, type DOMPurify, type DocumentFragmentHook, type ElementHook, type HookName, type NodeHook, type RemovedAttribute, type RemovedElement, type UponSanitizeAttributeHook, type UponSanitizeAttributeHookEvent, type UponSanitizeElementHook, type UponSanitizeElementHookEvent, type WindowLike };
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint/lib/types/rules.d.ts:3025: allowEscape: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint/lib/types/rules.d.ts:3281: * Rule to disallow `\8` and `\9` escape sequences in string literals.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint/lib/types/rules.d.ts:3287: * @see https://eslint.org/docs/latest/rules/no-nonoctal-decimal-escape
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint/lib/types/rules.d.ts:3289: "no-nonoctal-decimal-escape": Linter.RuleEntry<[]>;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint/lib/types/rules.d.ts:3322: * Rule to disallow octal escape sequences in string literals.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint/lib/types/rules.d.ts:3325: * @see https://eslint.org/docs/latest/rules/no-octal-escape
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint/lib/types/rules.d.ts:3327: "no-octal-escape": Linter.RuleEntry<[]>;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint/lib/types/rules.d.ts:4351: * Rule to disallow unnecessary escape characters.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint/lib/types/rules.d.ts:4357: * @see https://eslint.org/docs/latest/rules/no-useless-escape
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint/lib/types/rules.d.ts:4359: "no-useless-escape": Linter.RuleEntry<
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/eslint/lib/types/rules.d.ts:5019: avoidEscape: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/cypress-automation.d.ts:16: 'Escape'
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/chai/index.d.ts:977: * [] and . in property names can be escaped using double backslashes.Asserts that haystack includes needle.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/chai/index.d.ts:980: * [] and . in property names can be escaped using double backslashes.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/chai/index.d.ts:992: * [] and . in property names can be escaped using double backslashes.Asserts that haystack includes needle.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/chai/index.d.ts:995: * [] and . in property names can be escaped using double backslashes.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/chai/index.d.ts:1007: * [] and . in property names can be escaped using double backslashes.Asserts that haystack includes needle.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/chai/index.d.ts:1010: * [] and . in property names can be escaped using double backslashes.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/chai/index.d.ts:1022: * [] and . in property names can be escaped using double backslashes.Asserts that haystack includes needle.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/chai/index.d.ts:1025: * [] and . in property names can be escaped using double backslashes.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/jquery/JQueryStatic.d.ts:661: * Escapes any character that has a special meaning in a CSS selector.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/jquery/JQueryStatic.d.ts:662: * @param selector A string containing a selector expression to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/jquery/JQueryStatic.d.ts:663: * @see \`{@link https://api.jquery.com/jQuery.escapeSelector/ }\`
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/jquery/JQueryStatic.d.ts:665: * @example ````Escape an ID containing a hash.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/jquery/JQueryStatic.d.ts:667:$.escapeSelector( "#target" ); // "\#target"
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/jquery/JQueryStatic.d.ts:671:$( "div" ).find( "." + $.escapeSelector( ".box" ) );
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/jquery/JQueryStatic.d.ts:674: escapeSelector(selector: JQuery.Selector): JQuery.Selector;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/jquery/JQuery.d.ts:11378: * @example ````Add text to the paragraph (notice the bold tag is escaped).
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/jquery/misc.d.ts:123: * A function to be used to handle the raw response data of XMLHttpRequest. This is a pre-filtering function to sanitize the response. You should return the sanitized data. The function accepts two arguments: The raw data returned from the server and the 'dataType' parameter.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/fp/escapeRegExp.d.ts:1:import { escapeRegExp } from "../fp";
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/fp/escapeRegExp.d.ts:2:export = escapeRegExp;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/fp/escape.d.ts:1:import { escape } from "../fp";
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/fp/escape.d.ts:2:export = escape;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/fp/unescape.d.ts:1:import { unescape } from "../fp";
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/fp/unescape.d.ts:2:export = unescape;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/escapeRegExp.d.ts:1:import { escapeRegExp } from "./index";
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/escapeRegExp.d.ts:2:export = escapeRegExp;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/escape.d.ts:1:import { escape } from "./index";
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/escape.d.ts:2:export = escape;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/fp.d.ts:666: type LodashEscape = (string: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/fp.d.ts:667: type LodashEscapeRegExp = (string: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/fp.d.ts:4269: type LodashUnescape = (string: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/fp.d.ts:4630: escape: LodashEscape;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/fp.d.ts:4631: escapeRegExp: LodashEscapeRegExp;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/fp.d.ts:4902: unescape: LodashUnescape;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/common/string.d.ts:98: * Note: No other characters are escaped. To escape additional characters use a third-party library like he.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/common/string.d.ts:100: * hough the ">" character is escaped for symmetry, characters like ">" and "/" dont need escaping in HTML
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/common/string.d.ts:104: * Backticks are escaped because in IE < 9, they can break out of attribute values or HTML comments. See #59,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/common/string.d.ts:109: * @param string The string to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/common/string.d.ts:110: * @return Returns the escaped string.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/common/string.d.ts:112: escape(string?: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/common/string.d.ts:116: * @see _.escape
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/common/string.d.ts:118: escape(): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/common/string.d.ts:122: * @see _.escape
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/common/string.d.ts:124: escape(): StringChain;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/common/string.d.ts:129: * Escapes the RegExp special characters "^", "$", "\", ".", "*", "+", "?", "(", ")", "[", "]",
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/common/string.d.ts:132: * @param string The string to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/common/string.d.ts:133: * @return Returns the escaped string.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/common/string.d.ts:135: escapeRegExp(string?: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/common/string.d.ts:139: * @see _.escapeRegExp
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/common/string.d.ts:141: escapeRegExp(): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/common/string.d.ts:145: * @see _.escapeRegExp
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/common/string.d.ts:147: escapeRegExp(): StringChain;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/common/string.d.ts:490: * HTML-escape interpolated data properties in "escape" delimiters, and execute JavaScript in "evaluate"
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/common/string.d.ts:506: * @param options.escape The HTML "escape" delimiter.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/common/string.d.ts:694: * The inverse of _.escape; this method converts the HTML entities &amp;, &lt;, &gt;, &quot;, &#39;, and &#96;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/common/string.d.ts:697: * Note: No other HTML entities are unescaped. To unescape additional HTML entities use a third-party library
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/common/string.d.ts:700: * @param string The string to unescape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/common/string.d.ts:701: * @return Returns the unescaped string.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/common/string.d.ts:703: unescape(string?: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/common/string.d.ts:707: * @see _.unescape
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/common/string.d.ts:709: unescape(): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/common/string.d.ts:713: * @see _.unescape
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/common/string.d.ts:715: unescape(): StringChain;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/common/common.d.ts:77: * conformsTo, deburr, defaultTo, divide, each, eachRight, endsWith, eq, escape, escapeRegExp,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/common/common.d.ts:91: * toString, toUpper, trim, trimEnd, trimStart, truncate, unescape, uniqueId, upperCase,
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/common/common.d.ts:117: * The "escape" delimiter.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/common/common.d.ts:119: escape?: RegExp;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/unescape.d.ts:1:import { unescape } from "./index";
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/lodash/unescape.d.ts:2:export = unescape;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/mocha/index.d.ts:72: * Escape string and add it to grep as a RegExp.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/mocha/index.d.ts:79: * Add regexp to grep, if `re` is a string it is escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/cypress/types/cypress.d.ts:703: ESC: 'Escape'
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/typescript/lib/lib.dom.d.ts:4551: * The **`CDATASection`** interface represents a CDATA section that can be used within XML to include extended portions of unescaped text.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/typescript/lib/lib.dom.d.ts:37579: * The **`CSS.escape()`** static method returns a string containing the escaped string passed as parameter, mostly for use as part of a CSS selector.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/typescript/lib/lib.dom.d.ts:37581: * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/escape_static)
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/typescript/lib/lib.dom.d.ts:37583: function escape(ident: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/typescript/lib/lib.es5.d.ts:87: * Computes a new string in which certain characters have been replaced by a hexadecimal escape sequence.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/typescript/lib/lib.es5.d.ts:91:declare function escape(string: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/typescript/lib/lib.es5.d.ts:94: * Computes a new string in which hexadecimal escape sequences are replaced with the character that it represents.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/typescript/lib/lib.es5.d.ts:98:declare function unescape(string: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/typescript/lib/lib.es2015.proxy.d.ts:122: * properties. Proxy objects are commonly used to log property accesses, validate, format, or sanitize inputs.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/typescript/lib/typescript.d.ts:3403: private static readonly filenameEscapeRegexp;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/typescript/lib/typescript.d.ts:3404: private static escapeFilenameForRegex;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/typescript/lib/typescript.d.ts:4465: * Prefer to use `id.unescapedText`. (Note: This is available only in services, not internally to the TypeScript compiler.)
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/typescript/lib/typescript.d.ts:4468: readonly escapedText: __String;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/typescript/lib/typescript.d.ts:4501: readonly escapedText: __String;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/typescript/lib/typescript.d.ts:5004: hasExtendedUnicodeEscape?: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/typescript/lib/typescript.d.ts:5187: readonly escapedText: __String & "defer";
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/typescript/lib/typescript.d.ts:6538: escapedName: __String;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/typescript/lib/typescript.d.ts:6548: getEscapedName(): __String;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/typescript/lib/typescript.d.ts:6576: * This represents a string whose leading underscore have been escaped by adding extra leading underscores.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/typescript/lib/typescript.d.ts:6585: __escapedIdentifier: void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/typescript/lib/typescript.d.ts:6588: __escapedIdentifier: void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/typescript/lib/typescript.d.ts:6592: type ReadonlyUnderscoreEscapedMap<T> = ReadonlyMap<__String, T>;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/typescript/lib/typescript.d.ts:6594: type UnderscoreEscapedMap<T> = Map<__String, T>;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/typescript/lib/typescript.d.ts:6690: escapedName: __String;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/typescript/lib/typescript.d.ts:8526: hasUnicodeEscape(): boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/typescript/lib/typescript.d.ts:8527: hasExtendedUnicodeEscape(): boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/typescript/lib/typescript.d.ts:8642: function escapeLeadingUnderscores(identifier: string): __String;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/typescript/lib/typescript.d.ts:8644: * Remove extra underscore from escaped identifier text content.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/typescript/lib/typescript.d.ts:8646: * @param identifier The escaped identifier text.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/typescript/lib/typescript.d.ts:8647: * @returns The unescaped identifier text.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.ignored/typescript/lib/typescript.d.ts:8649: function unescapeLeadingUnderscores(identifier: __String): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/ansi-styles/index.d.ts:202: Use a [4-bit unsigned number](https://en.wikipedia.org/wiki/ANSI_escape_code#3/4-bit) to set text color.
/home/administrator/projects/coppertone.tech/frontend/node_modules/ansi-styles/index.d.ts:207: Use an [8-bit unsigned number](https://en.wikipedia.org/wiki/ANSI_escape_code#8-bit) to set text color.
/home/administrator/projects/coppertone.tech/frontend/node_modules/ansi-regex/index.d.ts:4: Match only the first ANSI escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/ansi-regex/index.d.ts:13:Regular expression for matching ANSI escape codes.
/home/administrator/projects/coppertone.tech/frontend/node_modules/glob/dist/commonjs/index.d.ts:5:export { escape, unescape } from 'minimatch';
/home/administrator/projects/coppertone.tech/frontend/node_modules/glob/dist/commonjs/index.d.ts:94: escape: (s: string, { windowsPathsNoEscape, magicalBraces, }?: Pick<import("minimatch").MinimatchOptions, "windowsPathsNoEscape" | "magicalBraces">) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/glob/dist/commonjs/index.d.ts:95: unescape: (s: string, { windowsPathsNoEscape, magicalBraces, }?: Pick<import("minimatch").MinimatchOptions, "windowsPathsNoEscape" | "magicalBraces">) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/glob/dist/commonjs/glob.d.ts:37: * Set to false to enable {@link windowsPathsNoEscape}
/home/administrator/projects/coppertone.tech/frontend/node_modules/glob/dist/commonjs/glob.d.ts:41: allowWindowsEscape?: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/glob/dist/commonjs/glob.d.ts:208: * _never_ as an escape character. If set, all `\\` characters are
/home/administrator/projects/coppertone.tech/frontend/node_modules/glob/dist/commonjs/glob.d.ts:218: * `allowWindowsEscape` is set to the exact value `false`.)
/home/administrator/projects/coppertone.tech/frontend/node_modules/glob/dist/commonjs/glob.d.ts:220: windowsPathsNoEscape?: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/glob/dist/commonjs/glob.d.ts:335: windowsPathsNoEscape: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/glob/dist/commonjs/walker.d.ts:14: allowWindowsEscape?: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/glob/dist/commonjs/walker.d.ts:34: windowsPathsNoEscape?: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/glob/dist/esm/index.d.ts:5:export { escape, unescape } from 'minimatch';
/home/administrator/projects/coppertone.tech/frontend/node_modules/glob/dist/esm/index.d.ts:94: escape: (s: string, { windowsPathsNoEscape, magicalBraces, }?: Pick<import("minimatch").MinimatchOptions, "windowsPathsNoEscape" | "magicalBraces">) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/glob/dist/esm/index.d.ts:95: unescape: (s: string, { windowsPathsNoEscape, magicalBraces, }?: Pick<import("minimatch").MinimatchOptions, "windowsPathsNoEscape" | "magicalBraces">) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/glob/dist/esm/glob.d.ts:37: * Set to false to enable {@link windowsPathsNoEscape}
/home/administrator/projects/coppertone.tech/frontend/node_modules/glob/dist/esm/glob.d.ts:41: allowWindowsEscape?: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/glob/dist/esm/glob.d.ts:208: * _never_ as an escape character. If set, all `\\` characters are
/home/administrator/projects/coppertone.tech/frontend/node_modules/glob/dist/esm/glob.d.ts:218: * `allowWindowsEscape` is set to the exact value `false`.)
/home/administrator/projects/coppertone.tech/frontend/node_modules/glob/dist/esm/glob.d.ts:220: windowsPathsNoEscape?: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/glob/dist/esm/glob.d.ts:335: windowsPathsNoEscape: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/glob/dist/esm/walker.d.ts:14: allowWindowsEscape?: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/glob/dist/esm/walker.d.ts:34: windowsPathsNoEscape?: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/superjson/dist/pathstringifier.d.ts:3:export declare const escapeKey: (key: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/@typescript-eslint/eslint-plugin/dist/util/escapeRegExp.d.ts:1:export declare function escapeRegExp(string?: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/@typescript-eslint/type-utils/dist/propertyTypes.d.ts:2:export declare function getTypeOfPropertyOfName(checker: ts.TypeChecker, type: ts.Type, name: string, escapedName?: ts.__String): ts.Type | undefined;
/home/administrator/projects/coppertone.tech/frontend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/PatternMatcher.d.ts:39: * The class to find a pattern in strings as handling escape sequences.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/PatternMatcher.d.ts:40: * It ignores the found pattern if it's escaped with `\`.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/PatternMatcher.d.ts:45: escaped?: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/resolveProjectList.d.ts:5: * Normalizes, sanitizes, resolves and filters the provided project paths
/home/administrator/projects/coppertone.tech/frontend/node_modules/@typescript-eslint/typescript-estree/dist/node-utils.d.ts:106: * Unescape the text content of string literals, e.g. &amp; -> &
/home/administrator/projects/coppertone.tech/frontend/node_modules/@typescript-eslint/typescript-estree/dist/node-utils.d.ts:107: * @param text The escaped string literal text.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@typescript-eslint/typescript-estree/dist/node-utils.d.ts:108: * @returns The unescaped string literal text.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@typescript-eslint/typescript-estree/dist/node-utils.d.ts:110:export declare function unescapeStringLiteralText(text: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/chalk/index.d.ts:221: Use a [Select/Set Graphic Rendition](https://en.wikipedia.org/wiki/ANSI_escape_code#SGR_parameters) (SGR) [color code number](https://en.wikipedia.org/wiki/ANSI_escape_code#3/4_bit) to set text color.
/home/administrator/projects/coppertone.tech/frontend/node_modules/chalk/index.d.ts:229: Use a [8-bit unsigned number](https://en.wikipedia.org/wiki/ANSI_escape_code#8-bit) to set text color.
/home/administrator/projects/coppertone.tech/frontend/node_modules/chalk/index.d.ts:282: Use a [Select/Set Graphic Rendition](https://en.wikipedia.org/wiki/ANSI_escape_code#SGR_parameters) (SGR) [color code number](https://en.wikipedia.org/wiki/ANSI_escape_code#3/4_bit) to set background color.
/home/administrator/projects/coppertone.tech/frontend/node_modules/chalk/index.d.ts:291: Use a [8-bit unsigned number](https://en.wikipedia.org/wiki/ANSI_escape_code#8-bit) to set background color.
/home/administrator/projects/coppertone.tech/frontend/node_modules/execa/index.d.ts:493: If the file or an argument contains spaces, they must be escaped with backslashes. This matters especially if `command` is not a constant but a variable, for example with `__dirname` or `process.cwd()`. Except for spaces, no escaping/quoting is needed.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@asamuzakjp/dom-selector/types/js/parser.d.ts:1:export function unescapeSelector(selector?: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/ajv/lib/ajv.d.ts:269: escapeQuotes(str: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/ajv/lib/ajv.d.ts:272: escapeJsonPointer(str: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/ajv/lib/ajv.d.ts:273: unescapeJsonPointer(str: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/ajv/lib/ajv.d.ts:274: escapeFragment(str: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/ajv/lib/ajv.d.ts:275: unescapeFragment(str: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/@isaacs/cliui/node_modules/string-width/index.d.ts:13:Some Unicode characters are [fullwidth](https://en.wikipedia.org/wiki/Halfwidth_and_fullwidth_forms) and use double the normal width. [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) are stripped and doesn't affect the width.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@isaacs/cliui/node_modules/strip-ansi/index.d.ts:2:Strip [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) from a string.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@isaacs/cliui/node_modules/ansi-regex/index.d.ts:3: Match only the first ANSI escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@isaacs/cliui/node_modules/ansi-regex/index.d.ts:11:Regular expression for matching ANSI escape codes.
/home/administrator/projects/coppertone.tech/frontend/node_modules/parse5/dist/tokenizer/index.d.ts:190: protected _stateScriptDataEscapeStart(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/parse5/dist/tokenizer/index.d.ts:191: protected _stateScriptDataEscapeStartDash(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/parse5/dist/tokenizer/index.d.ts:192: protected _stateScriptDataEscaped(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/parse5/dist/tokenizer/index.d.ts:193: protected _stateScriptDataEscapedDash(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/parse5/dist/tokenizer/index.d.ts:194: protected _stateScriptDataEscapedDashDash(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/parse5/dist/tokenizer/index.d.ts:195: protected _stateScriptDataEscapedLessThanSign(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/parse5/dist/tokenizer/index.d.ts:196: protected _stateScriptDataEscapedEndTagOpen(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/parse5/dist/tokenizer/index.d.ts:197: protected _stateScriptDataEscapedEndTagName(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/parse5/dist/tokenizer/index.d.ts:198: protected _stateScriptDataDoubleEscapeStart(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/parse5/dist/tokenizer/index.d.ts:199: protected _stateScriptDataDoubleEscaped(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/parse5/dist/tokenizer/index.d.ts:200: protected _stateScriptDataDoubleEscapedDash(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/parse5/dist/tokenizer/index.d.ts:201: protected _stateScriptDataDoubleEscapedDashDash(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/parse5/dist/tokenizer/index.d.ts:202: protected _stateScriptDataDoubleEscapedLessThanSign(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/parse5/dist/tokenizer/index.d.ts:203: protected _stateScriptDataDoubleEscapeEnd(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/parse5/dist/serializer/index.d.ts:12: * to `true`, `noscript` element content will not be escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/parse5/dist/common/html.d.ts:289:export declare function hasUnescapedText(tn: string, scriptingEnabled: boolean): boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/parse5/dist/cjs/tokenizer/index.d.ts:190: protected _stateScriptDataEscapeStart(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/parse5/dist/cjs/tokenizer/index.d.ts:191: protected _stateScriptDataEscapeStartDash(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/parse5/dist/cjs/tokenizer/index.d.ts:192: protected _stateScriptDataEscaped(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/parse5/dist/cjs/tokenizer/index.d.ts:193: protected _stateScriptDataEscapedDash(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/parse5/dist/cjs/tokenizer/index.d.ts:194: protected _stateScriptDataEscapedDashDash(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/parse5/dist/cjs/tokenizer/index.d.ts:195: protected _stateScriptDataEscapedLessThanSign(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/parse5/dist/cjs/tokenizer/index.d.ts:196: protected _stateScriptDataEscapedEndTagOpen(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/parse5/dist/cjs/tokenizer/index.d.ts:197: protected _stateScriptDataEscapedEndTagName(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/parse5/dist/cjs/tokenizer/index.d.ts:198: protected _stateScriptDataDoubleEscapeStart(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/parse5/dist/cjs/tokenizer/index.d.ts:199: protected _stateScriptDataDoubleEscaped(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/parse5/dist/cjs/tokenizer/index.d.ts:200: protected _stateScriptDataDoubleEscapedDash(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/parse5/dist/cjs/tokenizer/index.d.ts:201: protected _stateScriptDataDoubleEscapedDashDash(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/parse5/dist/cjs/tokenizer/index.d.ts:202: protected _stateScriptDataDoubleEscapedLessThanSign(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/parse5/dist/cjs/tokenizer/index.d.ts:203: protected _stateScriptDataDoubleEscapeEnd(cp: number): void;
/home/administrator/projects/coppertone.tech/frontend/node_modules/parse5/dist/cjs/serializer/index.d.ts:12: * to `true`, `noscript` element content will not be escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/parse5/dist/cjs/common/html.d.ts:289:export declare function hasUnescapedText(tn: string, scriptingEnabled: boolean): boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/escape-string-regexp/index.d.ts:2:Escape RegExp special characters.
/home/administrator/projects/coppertone.tech/frontend/node_modules/escape-string-regexp/index.d.ts:4:You can also use this to escape a string that is inserted into the middle of a regex, for example, into a character class.
/home/administrator/projects/coppertone.tech/frontend/node_modules/escape-string-regexp/index.d.ts:8:import escapeStringRegexp = require('escape-string-regexp');
/home/administrator/projects/coppertone.tech/frontend/node_modules/escape-string-regexp/index.d.ts:10:const escapedString = escapeStringRegexp('How much $ for a 🦄?');
/home/administrator/projects/coppertone.tech/frontend/node_modules/escape-string-regexp/index.d.ts:13:new RegExp(escapedString);
/home/administrator/projects/coppertone.tech/frontend/node_modules/escape-string-regexp/index.d.ts:16:declare const escapeStringRegexp: (string: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/escape-string-regexp/index.d.ts:18:export = escapeStringRegexp;
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/language-core/lib/codegen/utils/escaped.d.ts:2:export declare function generateEscaped(text: string, source: string, offset: number, features: VueCodeInformation, escapeTarget: RegExp): Generator<Code>;
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/devtools-kit/dist/index.d.ts:1006:declare function escape(s: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/devtools-kit/dist/index.d.ts:1121:export { type AddInspectorApiPayload, type App, type AppRecord, type ComponentBoundingRect, type ComponentBoundingRectApiPayload, type ComponentBounds, type ComponentHighLighterOptions, type ComponentInspector, type ComponentInstance, type ComponentState, type ComponentTreeNode, type CreateRpcClientOptions, type CreateRpcServerOptions, type CustomCommand, type CustomCommandAction, type CustomInspectorNode, type CustomInspectorOptions, type CustomInspectorState, type CustomTab, type DevToolsApiType, type DevToolsAppRecords, DevToolsContextHookKeys, type DevToolsContextHookPayloads, type DevToolsContextHooks, type DevToolsEvent, type DevToolsHook, DevToolsHooks, DevToolsMessagingHookKeys, type DevToolsMessagingHookPayloads, type DevToolsMessagingHooks, type DevToolsPlugin, type DevToolsState, DevToolsV6PluginAPIHookKeys, type DevToolsV6PluginAPIHookPayloads, type DevToolsV6PluginAPIHooks, type DevtoolsContext, type EditStatePayload, INFINITY, type InspectedComponentData, type InspectorCustomState, type InspectorNodeTag, type InspectorState, type InspectorStateApiPayload, type InspectorStateEditorPayload, type InspectorTree, type InspectorTreeApiPayload, type ModuleIframeView, type ModuleSFCView, type ModuleVNodeView, type ModuleView, NAN, NEGATIVE_INFINITY, type OpenInEditorOptions, type PluginDescriptor, type PluginSetupFunction, type Presets, type PropPath, ROUTER_INFO_KEY, ROUTER_KEY, type RouterInfo, type ScreenshotData, type ScreenshotOverlayEvent, type ScreenshotOverlayRenderContext, type ScreenshotOverlayRenderResult, type ScrollToComponentOptions, type StateBase, type TimelineEvent, type TimelineEventOptions, type TimelineLayerOptions, UNDEFINED, type VueAppInstance, type VueHooks, activeAppRecord, addCustomCommand, addCustomTab, addDevToolsAppRecord, addDevToolsPluginToBuffer, addInspector, callConnectedUpdatedHook, callDevToolsPluginSetupFn, callInspectorUpdatedHook, callStateUpdatedHook, cancelInspectComponentHighLighter, createComponentsDevToolsPlugin, createDevToolsApi, createDevToolsCtxHooks, createRpcClient, createRpcProxy, createRpcServer, type customTypeEnums, devtools, devtoolsAppRecords, devtoolsContext, devtoolsInspector, devtoolsPluginBuffer, devtoolsRouter, devtoolsRouterInfo, devtoolsState, escape, formatInspectorStateValue, getActiveInspectors, getComponentInspector, getDevToolsEnv, getExtensionClientContext, getInspector, getInspectorActions, getInspectorInfo, getInspectorNodeActions, getInspectorStateValueType, getRaw, getRpcClient, getRpcServer, getViteRpcClient, getViteRpcServer, highlight, initDevTools, inspectComponentHighLighter, isPlainObject, onDevToolsClientConnected, onDevToolsConnected, openInEditor, parse, registerDevToolsPlugin, removeCustomCommand, removeDevToolsAppRecord, removeRegisteredPluginApp, resetDevToolsState, scrollToComponent, setActiveAppRecord, setActiveAppRecordId, setDevToolsEnv, setElectronClientContext, setElectronProxyContext, setElectronServerContext, setExtensionClientContext, setIframeServerContext, setOpenInEditorBaseUrl, setRpcServerToGlobal, setViteClientContext, setViteRpcClientToGlobal, setViteRpcServerToGlobal, setViteServerContext, setupDevToolsPlugin, stringify, toEdit, toSubmit, toggleClientConnected, toggleComponentHighLighter, toggleComponentInspectorEnabled, toggleHighPerfMode, unhighlight, updateDevToolsClientDetected, updateDevToolsState, updateTimelineLayersState };
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/shared/dist/shared.d.ts:296:export declare function escapeHtml(string: unknown): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/shared/dist/shared.d.ts:297:export declare function escapeHtmlComment(src: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/shared/dist/shared.d.ts:298:export declare const cssVarNameEscapeSymbolsRE: RegExp;
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/shared/dist/shared.d.ts:299:export declare function getEscapedCssVarName(key: string, doubleEscape: boolean): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/reactivity/dist/reactivity.d.ts:193: * This is an escape hatch that can be used to temporarily read without
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/compiler-core/node_modules/entities/lib/esm/index.d.ts:12: * XML will be escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/compiler-core/node_modules/entities/lib/esm/index.d.ts:18: * be escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/compiler-core/node_modules/entities/lib/esm/index.d.ts:27: * Encode all characters that have to be escaped in HTML attributes,
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/compiler-core/node_modules/entities/lib/esm/index.d.ts:32: * Encode all characters that have to be escaped in HTML text,
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/compiler-core/node_modules/entities/lib/esm/index.d.ts:93:export { encodeXML, escape, escapeUTF8, escapeAttribute, escapeText, } from "./escape.js";
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/compiler-core/node_modules/entities/lib/esm/escape.d.ts:15: * Have a look at `escapeUTF8` if you want a more concise output at the expense
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/compiler-core/node_modules/entities/lib/esm/escape.d.ts:18: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/compiler-core/node_modules/entities/lib/esm/escape.d.ts:20:export declare const escape: typeof encodeXML;
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/compiler-core/node_modules/entities/lib/esm/escape.d.ts:26: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/compiler-core/node_modules/entities/lib/esm/escape.d.ts:28:export declare const escapeUTF8: (data: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/compiler-core/node_modules/entities/lib/esm/escape.d.ts:30: * Encodes all characters that have to be escaped in HTML attributes,
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/compiler-core/node_modules/entities/lib/esm/escape.d.ts:33: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/compiler-core/node_modules/entities/lib/esm/escape.d.ts:35:export declare const escapeAttribute: (data: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/compiler-core/node_modules/entities/lib/esm/escape.d.ts:37: * Encodes all characters that have to be escaped in HTML text,
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/compiler-core/node_modules/entities/lib/esm/escape.d.ts:40: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/compiler-core/node_modules/entities/lib/esm/escape.d.ts:42:export declare const escapeText: (data: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/compiler-core/node_modules/entities/lib/esm/escape.d.ts:43://# sourceMappingURL=escape.d.ts.map
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/compiler-core/node_modules/entities/lib/index.d.ts:12: * XML will be escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/compiler-core/node_modules/entities/lib/index.d.ts:18: * be escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/compiler-core/node_modules/entities/lib/index.d.ts:27: * Encode all characters that have to be escaped in HTML attributes,
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/compiler-core/node_modules/entities/lib/index.d.ts:32: * Encode all characters that have to be escaped in HTML text,
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/compiler-core/node_modules/entities/lib/index.d.ts:93:export { encodeXML, escape, escapeUTF8, escapeAttribute, escapeText, } from "./escape.js";
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/compiler-core/node_modules/entities/lib/escape.d.ts:15: * Have a look at `escapeUTF8` if you want a more concise output at the expense
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/compiler-core/node_modules/entities/lib/escape.d.ts:18: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/compiler-core/node_modules/entities/lib/escape.d.ts:20:export declare const escape: typeof encodeXML;
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/compiler-core/node_modules/entities/lib/escape.d.ts:26: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/compiler-core/node_modules/entities/lib/escape.d.ts:28:export declare const escapeUTF8: (data: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/compiler-core/node_modules/entities/lib/escape.d.ts:30: * Encodes all characters that have to be escaped in HTML attributes,
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/compiler-core/node_modules/entities/lib/escape.d.ts:33: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/compiler-core/node_modules/entities/lib/escape.d.ts:35:export declare const escapeAttribute: (data: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/compiler-core/node_modules/entities/lib/escape.d.ts:37: * Encodes all characters that have to be escaped in HTML text,
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/compiler-core/node_modules/entities/lib/escape.d.ts:40: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/compiler-core/node_modules/entities/lib/escape.d.ts:42:export declare const escapeText: (data: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/compiler-core/node_modules/entities/lib/escape.d.ts:43://# sourceMappingURL=escape.d.ts.map
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/devtools-core/node_modules/@vue/devtools-kit/dist/index.d.ts:1055:declare function escape(s: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vue/devtools-core/node_modules/@vue/devtools-kit/dist/index.d.ts:1172:export { AddInspectorApiPayload, App, AppRecord, ComponentBoundingRect, ComponentBoundingRectApiPayload, ComponentBounds, ComponentHighLighterOptions, ComponentInspector, ComponentInstance, ComponentState, ComponentTreeNode, CreateRpcClientOptions, CreateRpcServerOptions, CustomCommand, CustomCommandAction, CustomInspectorNode, CustomInspectorOptions, CustomInspectorState, CustomTab, DevToolsApiType, DevToolsAppRecords, DevToolsContextHookKeys, DevToolsContextHookPayloads, DevToolsContextHooks, DevToolsEvent, DevToolsHook, DevToolsHooks, DevToolsMessagingHookKeys, DevToolsMessagingHookPayloads, DevToolsMessagingHooks, DevToolsPlugin, DevToolsState, DevToolsV6PluginAPIHookKeys, DevToolsV6PluginAPIHookPayloads, DevToolsV6PluginAPIHooks, DevtoolsContext, EditStatePayload, INFINITY, InspectedComponentData, InspectorCustomState, InspectorNodeTag, InspectorState, InspectorStateApiPayload, InspectorStateEditorPayload, InspectorTree, InspectorTreeApiPayload, ModuleIframeView, ModuleSFCView, ModuleVNodeView, ModuleView, NAN, NEGATIVE_INFINITY, OpenInEditorOptions, PluginDescriptor, PluginSetupFunction, Presets, PropPath, ROUTER_INFO_KEY, ROUTER_KEY, type Router, RouterInfo, ScreenshotData, ScreenshotOverlayEvent, ScreenshotOverlayRenderContext, ScreenshotOverlayRenderResult, ScrollToComponentOptions, StateBase, TimelineEvent, TimelineEventOptions, TimelineLayerOptions, UNDEFINED, VueAppInstance, VueHooks, activeAppRecord, addCustomCommand, addCustomTab, addDevToolsAppRecord, addDevToolsPluginToBuffer, addInspector, callConnectedUpdatedHook, callDevToolsPluginSetupFn, callInspectorUpdatedHook, callStateUpdatedHook, cancelInspectComponentHighLighter, createComponentsDevToolsPlugin, createDevToolsApi, createDevToolsCtxHooks, createRpcClient, createRpcProxy, createRpcServer, customTypeEnums, devtools, devtoolsAppRecords, devtoolsContext, devtoolsInspector, devtoolsPluginBuffer, devtoolsRouter, devtoolsRouterInfo, devtoolsState, escape, formatInspectorStateValue, getActiveInspectors, getComponentInspector, getDevToolsEnv, getExtensionClientContext, getInspector, getInspectorActions, getInspectorInfo, getInspectorNodeActions, getInspectorStateValueType, getRaw, getRpcClient, getRpcServer, getViteRpcClient, getViteRpcServer, highlight, initDevTools, inspectComponentHighLighter, isPlainObject, onDevToolsClientConnected, onDevToolsConnected, openInEditor, parse, registerDevToolsPlugin, removeCustomCommand, removeDevToolsAppRecord, removeRegisteredPluginApp, resetDevToolsState, scrollToComponent, setActiveAppRecord, setActiveAppRecordId, setDevToolsEnv, setElectronClientContext, setElectronProxyContext, setElectronServerContext, setExtensionClientContext, setIframeServerContext, setOpenInEditorBaseUrl, setRpcServerToGlobal, setViteClientContext, setViteRpcClientToGlobal, setViteRpcServerToGlobal, setViteServerContext, setupDevToolsPlugin, stringify, toEdit, toSubmit, toggleClientConnected, toggleComponentHighLighter, toggleComponentInspectorEnabled, toggleHighPerfMode, unhighlight, updateDevToolsClientDetected, updateDevToolsState, updateTimelineLayersState };
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/cjs/index.d.ts:11: windowsPathsNoEscape?: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/cjs/index.d.ts:12: allowWindowsEscape?: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/cjs/index.d.ts:36: escape: (s: string, { windowsPathsNoEscape, }?: Pick<MinimatchOptions, "windowsPathsNoEscape">) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/cjs/index.d.ts:37: unescape: (s: string, { windowsPathsNoEscape, }?: Pick<MinimatchOptions, "windowsPathsNoEscape">) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/cjs/index.d.ts:57: windowsPathsNoEscape: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/cjs/index.d.ts:92:export { escape } from './escape.js';
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/cjs/index.d.ts:93:export { unescape } from './unescape.js';
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/cjs/escape.d.ts:3: * Escape all magic characters in a glob pattern.
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/cjs/escape.d.ts:5: * If the {@link windowsPathsNoEscape | GlobOptions.windowsPathsNoEscape}
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/cjs/escape.d.ts:6: * option is used, then characters are escaped by wrapping in `[]`, because
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/cjs/escape.d.ts:8: * that exact character. In this mode, `\` is _not_ escaped, because it is
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/cjs/escape.d.ts:11:export declare const escape: (s: string, { windowsPathsNoEscape, }?: Pick<MinimatchOptions, 'windowsPathsNoEscape'>) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/cjs/escape.d.ts:12://# sourceMappingURL=escape.d.ts.map
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/cjs/unescape.d.ts:3: * Un-escape a string that has been escaped with {@link escape}.
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/cjs/unescape.d.ts:5: * If the {@link windowsPathsNoEscape} option is used, then square-brace
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/cjs/unescape.d.ts:6: * escapes are removed, but not backslash escapes. For example, it will turn
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/cjs/unescape.d.ts:8: * becuase `\` is a path separator in `windowsPathsNoEscape` mode.
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/cjs/unescape.d.ts:10: * When `windowsPathsNoEscape` is not set, then both brace escapes and
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/cjs/unescape.d.ts:11: * backslash escapes are removed.
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/cjs/unescape.d.ts:13: * Slashes (and backslashes in `windowsPathsNoEscape` mode) cannot be escaped
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/cjs/unescape.d.ts:14: * or unescaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/cjs/unescape.d.ts:16:export declare const unescape: (s: string, { windowsPathsNoEscape, }?: Pick<MinimatchOptions, 'windowsPathsNoEscape'>) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/cjs/unescape.d.ts:17://# sourceMappingURL=unescape.d.ts.map
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/mjs/index.d.ts:11: windowsPathsNoEscape?: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/mjs/index.d.ts:12: allowWindowsEscape?: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/mjs/index.d.ts:36: escape: (s: string, { windowsPathsNoEscape, }?: Pick<MinimatchOptions, "windowsPathsNoEscape">) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/mjs/index.d.ts:37: unescape: (s: string, { windowsPathsNoEscape, }?: Pick<MinimatchOptions, "windowsPathsNoEscape">) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/mjs/index.d.ts:57: windowsPathsNoEscape: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/mjs/index.d.ts:92:export { escape } from './escape.js';
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/mjs/index.d.ts:93:export { unescape } from './unescape.js';
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/mjs/escape.d.ts:3: * Escape all magic characters in a glob pattern.
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/mjs/escape.d.ts:5: * If the {@link windowsPathsNoEscape | GlobOptions.windowsPathsNoEscape}
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/mjs/escape.d.ts:6: * option is used, then characters are escaped by wrapping in `[]`, because
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/mjs/escape.d.ts:8: * that exact character. In this mode, `\` is _not_ escaped, because it is
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/mjs/escape.d.ts:11:export declare const escape: (s: string, { windowsPathsNoEscape, }?: Pick<MinimatchOptions, 'windowsPathsNoEscape'>) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/mjs/escape.d.ts:12://# sourceMappingURL=escape.d.ts.map
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/mjs/unescape.d.ts:3: * Un-escape a string that has been escaped with {@link escape}.
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/mjs/unescape.d.ts:5: * If the {@link windowsPathsNoEscape} option is used, then square-brace
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/mjs/unescape.d.ts:6: * escapes are removed, but not backslash escapes. For example, it will turn
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/mjs/unescape.d.ts:8: * becuase `\` is a path separator in `windowsPathsNoEscape` mode.
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/mjs/unescape.d.ts:10: * When `windowsPathsNoEscape` is not set, then both brace escapes and
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/mjs/unescape.d.ts:11: * backslash escapes are removed.
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/mjs/unescape.d.ts:13: * Slashes (and backslashes in `windowsPathsNoEscape` mode) cannot be escaped
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/mjs/unescape.d.ts:14: * or unescaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/mjs/unescape.d.ts:16:export declare const unescape: (s: string, { windowsPathsNoEscape, }?: Pick<MinimatchOptions, 'windowsPathsNoEscape'>) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/editorconfig/node_modules/minimatch/dist/mjs/unescape.d.ts:17://# sourceMappingURL=unescape.d.ts.map
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/index.ts:5: escapeUTF8,
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/index.ts:6: escapeAttribute,
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/index.ts:7: escapeText,
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/index.ts:8:} from "./escape.js";
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/index.ts:21: * XML will be escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/index.ts:27: * be escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/index.ts:36: * Encode all characters that have to be escaped in HTML attributes,
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/index.ts:41: * Encode all characters that have to be escaped in HTML text,
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/index.ts:136: return escapeUTF8(input);
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/index.ts:139: return escapeAttribute(input);
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/index.ts:142: return escapeText(input);
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/index.ts:161: escape,
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/index.ts:162: escapeUTF8,
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/index.ts:163: escapeAttribute,
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/index.ts:164: escapeText,
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/index.ts:165:} from "./escape.js";
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/escape.ts:64: * Have a look at `escapeUTF8` if you want a more concise output at the expense
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/escape.ts:67: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/escape.ts:69:export const escape: typeof encodeXML = encodeXML;
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/escape.ts:72: * Creates a function that escapes all characters matched by the given regular
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/escape.ts:73: * expression using the given map of characters to escape to their entities.
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/escape.ts:75: * @param regex Regular expression to match characters to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/escape.ts:76: * @param map Map of characters to escape to their entities.
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/escape.ts:78: * @returns Function that escapes all characters matched by the given regular
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/escape.ts:79: * expression using the given map of characters to escape to their entities.
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/escape.ts:81:function getEscaper(
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/escape.ts:85: return function escape(data: string): string {
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/escape.ts:111: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/escape.ts:113:export const escapeUTF8: (data: string) => string = /* #__PURE__ */ getEscaper(
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/escape.ts:119: * Encodes all characters that have to be escaped in HTML attributes,
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/escape.ts:122: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/escape.ts:124:export const escapeAttribute: (data: string) => string =
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/escape.ts:125: /* #__PURE__ */ getEscaper(
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/escape.ts:135: * Encodes all characters that have to be escaped in HTML text,
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/escape.ts:138: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/escape.ts:140:export const escapeText: (data: string) => string = /* #__PURE__ */ getEscaper(
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/index.spec.ts:105: it(`should escape ${value}`, () =>
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/index.spec.ts:106: expect(entities.escape(value)).toBe(`&#x${c};`));
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/index.spec.ts:115:describe("Escape", () => {
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/index.spec.ts:119: expect(entities.decodeXML(entities.escape(c))).toBe(c);
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/index.spec.ts:124: expect(entities.escapeUTF8('ß < "ü"')).toBe(`ß &lt; &quot;ü&quot;`));
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/encode.ts:2:import { xmlReplacer, getCodePoint } from "./escape.js";
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/escape.spec.ts:4:describe("escape HTML", () => {
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/escape.spec.ts:5: it("should escape HTML attribute values", () =>
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/escape.spec.ts:6: expect(entities.escapeAttribute('<a " attr > & value \u00A0!')).toBe(
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/escape.spec.ts:10: it("should escape HTML text", () =>
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/src/escape.spec.ts:11: expect(entities.escapeText('<a " text > & value \u00A0!')).toBe(
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/dist/commonjs/index.d.ts:12: * XML will be escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/dist/commonjs/index.d.ts:18: * be escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/dist/commonjs/index.d.ts:27: * Encode all characters that have to be escaped in HTML attributes,
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/dist/commonjs/index.d.ts:32: * Encode all characters that have to be escaped in HTML text,
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/dist/commonjs/index.d.ts:93:export { encodeXML, escape, escapeUTF8, escapeAttribute, escapeText, } from "./escape.js";
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/dist/commonjs/escape.d.ts:15: * Have a look at `escapeUTF8` if you want a more concise output at the expense
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/dist/commonjs/escape.d.ts:18: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/dist/commonjs/escape.d.ts:20:export declare const escape: typeof encodeXML;
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/dist/commonjs/escape.d.ts:26: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/dist/commonjs/escape.d.ts:28:export declare const escapeUTF8: (data: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/dist/commonjs/escape.d.ts:30: * Encodes all characters that have to be escaped in HTML attributes,
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/dist/commonjs/escape.d.ts:33: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/dist/commonjs/escape.d.ts:35:export declare const escapeAttribute: (data: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/dist/commonjs/escape.d.ts:37: * Encodes all characters that have to be escaped in HTML text,
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/dist/commonjs/escape.d.ts:40: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/dist/commonjs/escape.d.ts:42:export declare const escapeText: (data: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/dist/commonjs/escape.d.ts:43://# sourceMappingURL=escape.d.ts.map
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/dist/esm/index.d.ts:12: * XML will be escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/dist/esm/index.d.ts:18: * be escaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/dist/esm/index.d.ts:27: * Encode all characters that have to be escaped in HTML attributes,
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/dist/esm/index.d.ts:32: * Encode all characters that have to be escaped in HTML text,
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/dist/esm/index.d.ts:93:export { encodeXML, escape, escapeUTF8, escapeAttribute, escapeText, } from "./escape.js";
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/dist/esm/escape.d.ts:15: * Have a look at `escapeUTF8` if you want a more concise output at the expense
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/dist/esm/escape.d.ts:18: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/dist/esm/escape.d.ts:20:export declare const escape: typeof encodeXML;
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/dist/esm/escape.d.ts:26: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/dist/esm/escape.d.ts:28:export declare const escapeUTF8: (data: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/dist/esm/escape.d.ts:30: * Encodes all characters that have to be escaped in HTML attributes,
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/dist/esm/escape.d.ts:33: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/dist/esm/escape.d.ts:35:export declare const escapeAttribute: (data: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/dist/esm/escape.d.ts:37: * Encodes all characters that have to be escaped in HTML text,
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/dist/esm/escape.d.ts:40: * @param data String to escape.
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/dist/esm/escape.d.ts:42:export declare const escapeText: (data: string) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/dist/esm/escape.d.ts:43://# sourceMappingURL=escape.d.ts.map
/home/administrator/projects/coppertone.tech/frontend/node_modules/entities/escape.d.ts:1:export * from "./dist/commonjs/escape.js";
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/commonjs/index.d.ts:11: windowsPathsNoEscape?: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/commonjs/index.d.ts:12: allowWindowsEscape?: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/commonjs/index.d.ts:36: escape: (s: string, { windowsPathsNoEscape, }?: Pick<MinimatchOptions, "windowsPathsNoEscape">) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/commonjs/index.d.ts:37: unescape: (s: string, { windowsPathsNoEscape, }?: Pick<MinimatchOptions, "windowsPathsNoEscape">) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/commonjs/index.d.ts:57: windowsPathsNoEscape: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/commonjs/index.d.ts:92:export { escape } from './escape.js';
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/commonjs/index.d.ts:93:export { unescape } from './unescape.js';
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/commonjs/escape.d.ts:3: * Escape all magic characters in a glob pattern.
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/commonjs/escape.d.ts:5: * If the {@link windowsPathsNoEscape | GlobOptions.windowsPathsNoEscape}
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/commonjs/escape.d.ts:6: * option is used, then characters are escaped by wrapping in `[]`, because
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/commonjs/escape.d.ts:8: * that exact character. In this mode, `\` is _not_ escaped, because it is
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/commonjs/escape.d.ts:11:export declare const escape: (s: string, { windowsPathsNoEscape, }?: Pick<MinimatchOptions, 'windowsPathsNoEscape'>) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/commonjs/escape.d.ts:12://# sourceMappingURL=escape.d.ts.map
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/commonjs/unescape.d.ts:3: * Un-escape a string that has been escaped with {@link escape}.
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/commonjs/unescape.d.ts:5: * If the {@link windowsPathsNoEscape} option is used, then square-brace
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/commonjs/unescape.d.ts:6: * escapes are removed, but not backslash escapes. For example, it will turn
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/commonjs/unescape.d.ts:8: * becuase `\` is a path separator in `windowsPathsNoEscape` mode.
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/commonjs/unescape.d.ts:10: * When `windowsPathsNoEscape` is not set, then both brace escapes and
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/commonjs/unescape.d.ts:11: * backslash escapes are removed.
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/commonjs/unescape.d.ts:13: * Slashes (and backslashes in `windowsPathsNoEscape` mode) cannot be escaped
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/commonjs/unescape.d.ts:14: * or unescaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/commonjs/unescape.d.ts:16:export declare const unescape: (s: string, { windowsPathsNoEscape, }?: Pick<MinimatchOptions, 'windowsPathsNoEscape'>) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/commonjs/unescape.d.ts:17://# sourceMappingURL=unescape.d.ts.map
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/esm/index.d.ts:11: windowsPathsNoEscape?: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/esm/index.d.ts:12: allowWindowsEscape?: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/esm/index.d.ts:36: escape: (s: string, { windowsPathsNoEscape, }?: Pick<MinimatchOptions, "windowsPathsNoEscape">) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/esm/index.d.ts:37: unescape: (s: string, { windowsPathsNoEscape, }?: Pick<MinimatchOptions, "windowsPathsNoEscape">) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/esm/index.d.ts:57: windowsPathsNoEscape: boolean;
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/esm/index.d.ts:92:export { escape } from './escape.js';
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/esm/index.d.ts:93:export { unescape } from './unescape.js';
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/esm/escape.d.ts:3: * Escape all magic characters in a glob pattern.
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/esm/escape.d.ts:5: * If the {@link windowsPathsNoEscape | GlobOptions.windowsPathsNoEscape}
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/esm/escape.d.ts:6: * option is used, then characters are escaped by wrapping in `[]`, because
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/esm/escape.d.ts:8: * that exact character. In this mode, `\` is _not_ escaped, because it is
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/esm/escape.d.ts:11:export declare const escape: (s: string, { windowsPathsNoEscape, }?: Pick<MinimatchOptions, 'windowsPathsNoEscape'>) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/esm/escape.d.ts:12://# sourceMappingURL=escape.d.ts.map
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/esm/unescape.d.ts:3: * Un-escape a string that has been escaped with {@link escape}.
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/esm/unescape.d.ts:5: * If the {@link windowsPathsNoEscape} option is used, then square-brace
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/esm/unescape.d.ts:6: * escapes are removed, but not backslash escapes. For example, it will turn
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/esm/unescape.d.ts:8: * becuase `\` is a path separator in `windowsPathsNoEscape` mode.
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/esm/unescape.d.ts:10: * When `windowsPathsNoEscape` is not set, then both brace escapes and
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/esm/unescape.d.ts:11: * backslash escapes are removed.
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/esm/unescape.d.ts:13: * Slashes (and backslashes in `windowsPathsNoEscape` mode) cannot be escaped
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/esm/unescape.d.ts:14: * or unescaped.
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/esm/unescape.d.ts:16:export declare const unescape: (s: string, { windowsPathsNoEscape, }?: Pick<MinimatchOptions, 'windowsPathsNoEscape'>) => string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/minimatch/dist/esm/unescape.d.ts:17://# sourceMappingURL=unescape.d.ts.map
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/error.go:131: "2200B": "escape_character_conflict",
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/error.go:141: "22019": "invalid_escape_character",
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/error.go:142: "2200D": "invalid_escape_octet",
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/error.go:143: "22025": "invalid_escape_sequence",
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/error.go:144: "22P06": "nonstandard_use_of_escape_character",
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/error.go:151: "2200C": "invalid_use_of_escape_character",
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/conn_test.go:1423: // Backslash escapes next char
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/conn_test.go:1427: // Incomplete escape
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/scram/scram.go:108:var escaper = strings.NewReplacer("=", "=3D", ",", "=2C")
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/scram/scram.go:142: escaper.WriteString(&c.authMsg, c.user)
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/bench_test.go:303:func BenchmarkEncodeByteaEscape(b *testing.B) {
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/array.go:815: var escape bool
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/array.go:817: if escape {
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/array.go:819: escape = false
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/array.go:825: escape = true
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/conn.go:1653:// Any double quotes in name will be escaped. The quoted identifier will be
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/conn.go:1683:// Any single quotes in name will be escaped. Any backslashes (i.e. "\") will be
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/conn.go:1684:// replaced by two backslashes (i.e. "\\") and the C-style escape identifier
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/conn.go:1688: // from libpq, which can be found in the "PQEscapeStringInternal" function,
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/conn.go:1697: // C-style escape. Per how "PQEscapeStringInternal" handles this case, we
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/encode_test.go:712: t.Errorf("invalid escape bytea output, got %v but expected %v", got, want)
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/encode_test.go:783: testByteaOutputFormat("escape", false)
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/encode_test.go:785: testByteaOutputFormat("escape", true)
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/encode_test.go:804:func TestAppendEscapedText(t *testing.T) {
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/encode_test.go:805: if esc := appendEscapedText(nil, "hallo\tescape"); string(esc) != "hallo\\tescape" {
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/encode_test.go:808: if esc := appendEscapedText(nil, "hallo\\tescape\n"); string(esc) != "hallo\\\\tescape\\n" {
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/encode_test.go:811: if esc := appendEscapedText(nil, "\n\r\t\f"); string(esc) != "\\n\\r\\t\f" {
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/encode_test.go:816:func TestAppendEscapedTextExistingBuffer(t *testing.T) {
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/encode_test.go:818: if esc := appendEscapedText(buf, "hallo\tescape"); string(esc) != "123\thallo\\tescape" {
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/encode_test.go:822: if esc := appendEscapedText(buf, "hallo\\tescape\n"); string(esc) != "123\thallo\\\\tescape\\n" {
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/encode_test.go:826: if esc := appendEscapedText(buf, "\n\r\t\f"); string(esc) != "123\t\\n\\r\\t\f" {
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/encode_test.go:868:func BenchmarkAppendEscapedText(b *testing.B) {
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/encode_test.go:874: appendEscapedText(nil, longString)
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/encode_test.go:878:func BenchmarkAppendEscapedTextNoEscape(b *testing.B) {
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/encode_test.go:884: appendEscapedText(nil, longString)
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/encode.go:146: return appendEscapedText(buf, string(encodedBytea))
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/encode.go:148: return appendEscapedText(buf, v)
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/encode.go:162:func appendEscapedText(buf []byte, text string) []byte {
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/encode.go:163: escapeNeeded := false
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/encode.go:167: // check if we need to escape
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/encode.go:171: escapeNeeded = true
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/encode.go:176: if !escapeNeeded {
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/encode.go:180: // copy till first char to escape, iterate the rest
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/encode.go:541:// "escape" format are supported.
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/encode.go:552: // bytea_output = escape
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/encode.go:555: // escaped '\\'
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/encode.go:573: // We hit an unescaped, raw byte. Try to read in as many as
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/encode.go:597: // .. or resort to "escape"
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/doc.go:78:A backslash will escape the next character in values:
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/notice_test.go:43:func raiseNotice(c driver.Connector, t *testing.T, escapedNotice string) {
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/notice_test.go:46: sql := "DO language plpgsql $$ BEGIN RAISE NOTICE '" + escapedNotice + "'; END $$"
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/hstore/hstore.go:14:// escapes and quotes hstore keys/values
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/url.go:43: escaper := strings.NewReplacer(`'`, `\'`, `\`, `\\`)
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/url.go:46: kvs = append(kvs, k+"='"+escaper.Replace(v)+"'")
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/notify_test.go:605:func sendNotification(c driver.Connector, t *testing.T, escapedNotification string) {
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/github.com/lib/pq@v1.10.9/notify_test.go:608: sql := fmt.Sprintf("LISTEN foo; NOTIFY foo, '%s';", escapedNotification)
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/golang.org/x/crypto@v0.30.0/openpgp/clearsign/clearsign.go:46:// dashEscape is prefixed to any lines that begin with a hyphen so that they
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/golang.org/x/crypto@v0.30.0/openpgp/clearsign/clearsign.go:48:var dashEscape = []byte("- ")
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/golang.org/x/crypto@v0.30.0/openpgp/clearsign/clearsign.go:166: if bytes.HasPrefix(line, dashEscape) {
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/golang.org/x/crypto@v0.30.0/openpgp/clearsign/clearsign.go:198:// A dashEscaper is an io.WriteCloser which processes the body of a clear-signed
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/golang.org/x/crypto@v0.30.0/openpgp/clearsign/clearsign.go:204:type dashEscaper struct {
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/golang.org/x/crypto@v0.30.0/openpgp/clearsign/clearsign.go:220:func (d *dashEscaper) Write(data []byte) (n int, err error) {
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/golang.org/x/crypto@v0.30.0/openpgp/clearsign/clearsign.go:242: // At the beginning of a line, hyphens have to be escaped.
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/golang.org/x/crypto@v0.30.0/openpgp/clearsign/clearsign.go:244: // The signature isn't calculated over the dash-escaped text so
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/golang.org/x/crypto@v0.30.0/openpgp/clearsign/clearsign.go:245: // the escape is only written to buffered.
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/golang.org/x/crypto@v0.30.0/openpgp/clearsign/clearsign.go:246: if _, err = d.buffered.Write(dashEscape); err != nil {
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/golang.org/x/crypto@v0.30.0/openpgp/clearsign/clearsign.go:293:func (d *dashEscaper) Close() (err error) {
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/golang.org/x/crypto@v0.30.0/openpgp/clearsign/clearsign.go:386: plaintext = &dashEscaper{
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/golang.org/x/crypto@v0.30.0/chacha20poly1305/chacha20poly1305_amd64.go:16://go:noescape
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/golang.org/x/crypto@v0.30.0/chacha20poly1305/chacha20poly1305_amd64.go:19://go:noescape
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/golang.org/x/crypto@v0.30.0/ssh/session.go:438: // Must sanitize strings?
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/golang.org/x/crypto@v0.30.0/ssh/terminal/terminal.go:17:// EscapeCodes contains escape sequences that can be written to the terminal in
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/golang.org/x/crypto@v0.30.0/ssh/terminal/terminal.go:19:type EscapeCodes = term.EscapeCodes
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/golang.org/x/crypto@v0.30.0/argon2/blamka_amd64.go:15://go:noescape
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/golang.org/x/crypto@v0.30.0/argon2/blamka_amd64.go:18://go:noescape
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/golang.org/x/crypto@v0.30.0/argon2/blamka_amd64.go:21://go:noescape
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/golang.org/x/crypto@v0.30.0/blake2s/blake2s_amd64.go:17://go:noescape
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/golang.org/x/crypto@v0.30.0/blake2s/blake2s_amd64.go:20://go:noescape
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/golang.org/x/crypto@v0.30.0/blake2s/blake2s_amd64.go:23://go:noescape
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/golang.org/x/crypto@v0.30.0/blake2s/blake2s_386.go:17://go:noescape
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/golang.org/x/crypto@v0.30.0/blake2s/blake2s_386.go:20://go:noescape
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/golang.org/x/crypto@v0.30.0/sha3/allocations_test.go:22: // On s390x the returned hash.Hash is conditional so it escapes.
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/golang.org/x/crypto@v0.30.0/sha3/keccakf_amd64.go:11://go:noescape
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/golang.org/x/crypto@v0.30.0/sha3/sha3_s390x.go:37://go:noescape
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/golang.org/x/crypto@v0.30.0/sha3/sha3_s390x.go:43://go:noescape
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/golang.org/x/crypto@v0.30.0/salsa20/salsa/salsa20_amd64.go:9://go:noescape
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/golang.org/x/crypto@v0.30.0/chacha20/chacha_arm64.go:11://go:noescape
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/golang.org/x/crypto@v0.30.0/chacha20/chacha_generic.go:75: // escape to the heap.
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/golang.org/x/crypto@v0.30.0/chacha20/chacha_generic.go:347: // escape to the heap.
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/golang.org/x/crypto@v0.30.0/chacha20/chacha_ppc64x.go:11://go:noescape
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/golang.org/x/crypto@v0.30.0/chacha20/chacha_s390x.go:18://go:noescape
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/golang.org/x/crypto@v0.30.0/blake2b/blake2bAVX2_amd64.go:17://go:noescape
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/golang.org/x/crypto@v0.30.0/blake2b/blake2bAVX2_amd64.go:20://go:noescape
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/golang.org/x/crypto@v0.30.0/blake2b/blake2bAVX2_amd64.go:23://go:noescape
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/golang.org/x/crypto@v0.30.0/internal/poly1305/sum_amd64.go:9://go:noescape
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/golang.org/x/crypto@v0.30.0/internal/poly1305/sum_s390x.go:17://go:noescape
/home/administrator/projects/coppertone.tech/.gopath/pkg/mod/golang.org/x/crypto@v0.30.0/internal/poly1305/sum_ppc64x.go:9://go:noescape
== Regex Validation ==
/home/administrator/projects/coppertone.tech/backend/functions/auth-service/main.go:16: "regexp"
/home/administrator/projects/coppertone.tech/backend/functions/auth-service/main.go:173:// Email validation regex (RFC 5322 simplified)
/home/administrator/projects/coppertone.tech/backend/functions/auth-service/main.go:174:var emailRegex = regexp.MustCompile(`^[a-zA-Z0-9._%+\-]+@[a-zA-Z0-9.\-]+\.[a-zA-Z]{2,}$`)
/home/administrator/projects/coppertone.tech/backend/functions/contact-service/main.go:13: "regexp"
/home/administrator/projects/coppertone.tech/backend/functions/contact-service/main.go:644: emailRegex := regexp.MustCompile(`^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$`)
== Length/Size Validation ==
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vitest/utils/dist/index.d.ts:22: maxLength?: number;
/home/administrator/projects/coppertone.tech/frontend/node_modules/@vitest/utils/dist/index.d.ts:24:declare function stringify(object: unknown, maxDepth?: number, { maxLength,...options }?: StringifyOptions): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@typescript-eslint+utils@8.47.0_eslint@9.39.1_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils/dist/json-schema.d.ts:286: maxLength?: number | undefined;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@typescript-eslint+utils@8.47.0_eslint@9.39.1_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils/dist/json-schema.d.ts:290: minLength?: number | undefined;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts:14832: * The **`maxLength`** property of the HTMLInputElement interface indicates the maximum number of characters (in UTF-16 code units) allowed to be entered for the value of the input element, and the maximum number of characters allowed for the value to be valid.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts:14834: * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/maxLength)
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts:14836: maxLength: number;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts:14844: * The **`minLength`** property of the HTMLInputElement interface indicates the minimum number of characters (in UTF-16 code units) required for the value of the input element to be valid.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts:14846: * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/minLength)
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts:14848: minLength: number;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts:17344: * The **`maxLength`** property of the HTMLTextAreaElement interface indicates the maximum number of characters (in UTF-16 code units) allowed to be entered for the value of the textarea element, and the maximum number of characters allowed for the value to be valid.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts:17346: * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/maxLength)
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts:17348: maxLength: number;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts:17350: * The **`minLength`** property of the HTMLTextAreaElement interface indicates the minimum number of characters (in UTF-16 code units) required for the value of the textarea element to be valid.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts:17352: * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/minLength)
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts:17354: minLength: number;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts:24: * @param maxLength The length of the resulting string once the current string has been padded.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts:31: padStart(maxLength: number, fillString?: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts:37: * @param maxLength The length of the resulting string once the current string has been padded.
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts:44: padEnd(maxLength: number, fillString?: string): string;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/typescript.d.ts:6777: minLength: number;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/it-length-prefixed-stream@2.0.3/node_modules/it-length-prefixed-stream/src/index.ts:62: maxLengthLength: number
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/it-length-prefixed-stream@2.0.3/node_modules/it-length-prefixed-stream/src/index.ts:69: if (opts.maxDataLength != null && opts.maxLengthLength == null) {
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/it-length-prefixed-stream@2.0.3/node_modules/it-length-prefixed-stream/src/index.ts:72: opts.maxLengthLength = varint.encodingLength(opts.maxDataLength)
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/it-length-prefixed-stream@2.0.3/node_modules/it-length-prefixed-stream/src/index.ts:104: if (opts?.maxLengthLength != null && lengthBuffer.byteLength > opts.maxLengthLength) {
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/it-length-prefixed-stream@2.0.3/node_modules/it-length-prefixed-stream/dist/src/index.d.ts:26: maxLengthLength: number;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@asamuzakjp+css-color@4.1.0/node_modules/@asamuzakjp/css-color/src/js/color.ts:409: * @param [opt.minLength] - min length
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@asamuzakjp+css-color@4.1.0/node_modules/@asamuzakjp/css-color/src/js/color.ts:410: * @param [opt.maxLength] - max length
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@asamuzakjp+css-color@4.1.0/node_modules/@asamuzakjp/css-color/src/js/color.ts:420: minLength?: number;
/home/administrator/projects/coppertone.tech/frontend/node_modules/.pnpm/@asamuzakjp+css-color@4.1.0/node_modules/@asamuzakjp/css-color/src/js/color.ts:421: maxLength?: number;