(tag: MetaDefinition, el: HTMLMetaElement)
| 182 | } |
| 183 | |
| 184 | function setMetaElementAttributes(tag: MetaDefinition, el: HTMLMetaElement) { |
| 185 | Object.keys(tag).forEach((prop: string) => el.setAttribute(getMetaKeyMap(prop), tag[prop])); |
| 186 | } |
| 187 | |
| 188 | function validateMetaDefinition(tag: MetaDefinition): void { |
| 189 | for (const prop of Object.keys(tag)) { |
no test coverage detected