chore: user apikeys
This commit is contained in:
+7
-1
@@ -2,7 +2,13 @@ export const isNotEmptyValue = (value: any) => {
|
||||
if (Array.isArray(value)) {
|
||||
return value.length > 0;
|
||||
}
|
||||
return value !== null && value !== undefined && value !== '';
|
||||
return (
|
||||
value !== null &&
|
||||
value !== undefined &&
|
||||
value !== '' &&
|
||||
value !== false &&
|
||||
value !== 0
|
||||
);
|
||||
};
|
||||
|
||||
export const handleBatchRequest = async (
|
||||
|
||||
Reference in New Issue
Block a user