(attributes: Record<string, string>)
| 176 | } |
| 177 | |
| 178 | function attributeToString (attributes: Record<string, string>) { |
| 179 | return Object.entries(attributes).map(([name, value]) => value ? ` ${name}="${value}"` : ` ${name}`).join('') |
| 180 | } |
| 181 | |
| 182 | function isBinding (attr: string): boolean { |
| 183 | return attr.startsWith(':') |
no outgoing calls
no test coverage detected
searching dependent graphs…