/** * Array wrap * @param input * @returns */ export function arrayWrap(input: Type): Type[] { return Array.isArray(input) ? input : [input] }