function isPopulatedAndNotEmpty()

in libs/state-machine/src/lib/resolve-step-status.ts [15:20]


function isPopulatedAndNotEmpty(value: SupportedValue): boolean {
	if (Array.isArray(value) && value.length === 0) {
		return false;
	}
	return value ? true : false;
}