inibase 1.1.8 → 1.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -999,10 +999,9 @@ export default class Inibase {
|
|
|
999
999
|
: Utils.deepMerge(RETURN, formatedSearchResult);
|
|
1000
1000
|
this.totalItems.set(`${tableName}-${key}`, totalLines);
|
|
1001
1001
|
if (linesNumbers?.size) {
|
|
1002
|
-
if (searchIn)
|
|
1002
|
+
if (searchIn && !allTrue)
|
|
1003
1003
|
for (const lineNumber of linesNumbers)
|
|
1004
1004
|
searchIn.add(lineNumber);
|
|
1005
|
-
}
|
|
1006
1005
|
else
|
|
1007
1006
|
searchIn = linesNumbers;
|
|
1008
1007
|
}
|