1
0
Fork 0
mirror of synced 2024-09-29 08:41:16 +13:00

Handle number types custom query

This commit is contained in:
Mel O'Hagan 2022-06-27 13:54:03 +01:00
parent b295ecfeda
commit 2db45457d6

View file

@ -217,6 +217,9 @@ export const runLuceneQuery = (docs, query) => {
const oneOf = match("oneOf", (docValue, testValue) => {
if (typeof testValue === "string") {
testValue = testValue.split(",")
if (typeof docValue === "number") {
testValue = testValue.map(item => Number(item))
}
}
return !testValue?.includes(docValue)
})