function ensure_arr(obj){ if (Array.isArray(obj)){ return obj } else { return [obj] } }