(value: readonly T[] | T | undefined)
| 149 | } |
| 150 | |
| 151 | export function toArray<T>(value: readonly T[] | T | undefined): readonly T[] { |
| 152 | if (value === undefined) { |
| 153 | return []; |
| 154 | } |
| 155 | return toArrayStrict(value); |
| 156 | } |
| 157 | |
| 158 | export function resolveOutput< |
| 159 | TContext extends MachineContext, |
no test coverage detected
searching dependent graphs…