(obj: T | T[])
| 13 | } |
| 14 | |
| 15 | export const arrayify = <T>(obj: T | T[]): T[] => |
| 16 | obj instanceof Array ? obj : [obj]; |
| 17 | |
| 18 | export type IncrementEvent = MouseEvent & { delta: number; type: "increment" }; |
no outgoing calls
no test coverage detected
searching dependent graphs…