(from: string, to?: string)
| 276 | // Create underscore aliases to satisfy compiled helper identifiers (e.g. _renderSlot) |
| 277 | try { |
| 278 | const alias = (from: string, to?: string) => { |
| 279 | try { |
| 280 | const val = (g as any)[from]; |
| 281 | const key = to || '_' + from; |
| 282 | if (val && !(key in (g as any))) (g as any)[key] = val; |
| 283 | } catch {} |
| 284 | }; |
| 285 | alias('renderSlot'); |
| 286 | alias('normalizeClass'); |
| 287 | alias('normalizeStyle'); |
no outgoing calls
no test coverage detected