(prop: string)
| 196 | } |
| 197 | |
| 198 | function getMetaKeyMap(prop: string): string { |
| 199 | return META_KEYS_MAP[prop] || prop; |
| 200 | } |
| 201 | |
| 202 | function isMetaTag(tag: HTMLElement | null): tag is HTMLMetaElement { |
| 203 | return tag?.nodeName.toLowerCase() === 'meta'; |
no outgoing calls
no test coverage detected