mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-01 00:08:27 +01:00
4 lines
134 B
TypeScript
4 lines
134 B
TypeScript
export const nonEmptyArray = (value: unknown): boolean => {
|
|
return Boolean(value) && Array.isArray(value) && value.length > 0;
|
|
};
|