import isUndefined from 'lodash/isUndefined'; /* UTILS */ export function exists>( arg: T | undefined, ): arg is T { return !isUndefined(arg) && arg.length > 0; }