(a: T)
| 68 | } |
| 69 | |
| 70 | export const toArray = <T>(a: T): Arrify<Exclude<T, void>> => |
| 71 | (is.und(a) ? [] : is.arr(a) ? a : [a]) as Arrify<Exclude<T, void>> |
| 72 | |
| 73 | /** Copy the `queue`, then iterate it after the `queue` is cleared */ |
| 74 | export function flush<P, T>( |
no outgoing calls
searching dependent graphs…