const isArray = (obj) => Array.isArray(obj);
const isArray = (obj: any): boolean => Array.isArray(obj);