(attrSelector: string)
| 173 | } |
| 174 | |
| 175 | function buildMetaSelector(attrSelector: string): string { |
| 176 | return `meta[${attrSelector}]`; |
| 177 | } |
| 178 | |
| 179 | function setMetaElementAttributes(tag: MetaDefinition, el: HTMLMetaElement) { |
| 180 | Object.keys(tag).forEach((prop: string) => el.setAttribute(getMetaKeyMap(prop), tag[prop])); |