(n: number)
| 21 | // --------------------------------------------------------------------------- |
| 22 | |
| 23 | function makeDefaults(n: number): Record<string, string> { |
| 24 | const v: Record<string, string> = {}; |
| 25 | for (let i = 0; i < n; i++) v[`f${i}`] = ''; |
| 26 | return v; |
| 27 | } |
| 28 | |
| 29 | function makeEvent(name: string, value: string) { |
| 30 | // target.type is omitted → onChange uses getEventValue(event) instead of |
no outgoing calls
no test coverage detected
searching dependent graphs…