(prop: string)
| 214 | } |
| 215 | |
| 216 | function getMetaKeyMap(prop: string): string { |
| 217 | return Object.hasOwn(META_KEYS_MAP, prop) ? META_KEYS_MAP[prop] : prop; |
| 218 | } |
| 219 | |
| 220 | function isMetaTag(tag: HTMLElement | null): tag is HTMLMetaElement { |
| 221 | return tag?.nodeName.toLowerCase() === 'meta'; |
no outgoing calls
no test coverage detected