export function ensureArray(param: T | Array): Array { const emptyArray: Array = []; return emptyArray.concat(param); }