(arr: VariableDecl[], id: string)
| 30 | } |
| 31 | |
| 32 | function indexOfId(arr: VariableDecl[], id: string): number { |
| 33 | return arr.findIndex((v) => typeof v === "object" && v !== null && v.id === id); |
| 34 | } |
| 35 | |
| 36 | /** |
| 37 | * Read the current `default` value for a variable id. Returns undefined when |
no outgoing calls
no test coverage detected