(tagName: string)
| 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 |
no outgoing calls
no test coverage detected