(tagName: string)
| 1255 | * @returns Returns true if the tag name meets the basic criteria for a custom element, otherwise false. |
| 1256 | */ |
| 1257 | const _isBasicCustomElement = function (tagName: string): RegExpMatchArray { |
| 1258 | return tagName !== 'annotation-xml' && stringMatch(tagName, CUSTOM_ELEMENT); |
| 1259 | }; |
| 1260 | |
| 1261 | /** |
| 1262 | * _sanitizeAttributes |
no outgoing calls
no test coverage detected