( tag, tagName = 'meta' )
| 206 | } |
| 207 | |
| 208 | function makeTag ( tag, tagName = 'meta' ) { |
| 209 | |
| 210 | const attributes = Object.entries(tag).map( ([ name, value ]) => `${name}="${value}"` ).join(' ') |
| 211 | |
| 212 | return `<${tagName} ${attributes}>` |
| 213 | } |
| 214 | |
| 215 | function mapMetaTag ( tag ) { |
| 216 |
no outgoing calls
no test coverage detected