1
0
Fork 0
mirror of synced 2024-08-23 05:51:29 +12:00

Fix Lucene tests.

This commit is contained in:
Sam Rose 2024-05-08 15:36:26 +01:00
parent 264ce5e272
commit 5783ee790f
No known key found for this signature in database

View file

@ -13,11 +13,7 @@ import { dataFilters } from "@budibase/shared-core"
export const removeKeyNumbering = dataFilters.removeKeyNumbering
function isEmpty(value: any) {
return (
value == null ||
value === "" ||
(Array.isArray(value) && value.length === 0)
)
return value == null || value === ""
}
/**