(ctx: StateContext, name: string)
| 77 | } |
| 78 | |
| 79 | function createID(ctx: StateContext, name: string) { |
| 80 | const base = `${ctx.hash}-${ctx.count++}`; |
| 81 | if (ctx.env === "development") { |
| 82 | return `${base}-${name}`; |
| 83 | } |
| 84 | return base; |
| 85 | } |
| 86 | |
| 87 | function transformFunction( |
| 88 | ctx: StateContext, |
no outgoing calls
no test coverage detected
searching dependent graphs…