UNPKG

just-scripts

Version:
4 lines (3 loc) 94 B
export function arrayify<T>(obj: T | T[]): T[] { return Array.isArray(obj) ? obj : [obj]; }