(target: HfId | HfId[])
| 146 | // ─── Target normalization ──────────────────────────────────────────────────── |
| 147 | |
| 148 | function targets(target: HfId | HfId[]): HfId[] { |
| 149 | return Array.isArray(target) ? target : [target]; |
| 150 | } |
| 151 | |
| 152 | // ─── Op dispatch ──────────────────────────────────────────────────────────── |
| 153 |
no outgoing calls
no test coverage detected