MCPcopy Create free account
hub / github.com/cure53/DOMPurify / _isBasicCustomElement

Function _isBasicCustomElement

src/purify.ts:2223–2228  ·  view source on GitHub ↗
(tagName: string)

Source from the content-addressed store, hash-verified

2221 * @returns Returns true if the tag name meets the basic criteria for a custom element, otherwise false.
2222 */
2223 const _isBasicCustomElement = function (tagName: string): boolean {
2224 return (
2225 !RESERVED_CUSTOM_ELEMENT_NAMES[stringToLowerCase(tagName)] &&
2226 regExpTest(CUSTOM_ELEMENT, tagName)
2227 );
2228 };
2229
2230 /**
2231 * Wrap an attribute value in the matching Trusted Types object when

Callers 2

_sanitizeDisallowedNodeFunction · 0.85
_isValidAttributeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected