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

Function _isBasicCustomElement

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

Source from the content-addressed store, hash-verified

2411 * @returns Returns true if the tag name meets the basic criteria for a custom element, otherwise false.
2412 */
2413 const _isBasicCustomElement = function (tagName: string): boolean {
2414 return (
2415 !RESERVED_CUSTOM_ELEMENT_NAMES[stringToLowerCase(tagName)] &&
2416 regExpTest(CUSTOM_ELEMENT, tagName)
2417 );
2418 };
2419
2420 /**
2421 * 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