in src/array-utils.ts [4:9]
export function isEmpty(arr?: any[]): boolean { if (arr && arr.length > 0) { return false; } return true; }