jsstore
Version:
Harness the power of JsStore to streamline database operations in your web applications. With its SQL-like API, JsStore simplifies IndexedDB interactions, enabling developers to easily query, filter, and manipulate data with familiar syntax and efficiency
18 lines (17 loc) • 420 B
TypeScript
/**
* For matching the different column value existance for where option
*
* @export
* @class WhereChecker
*/
export declare class WhereChecker {
where: object;
checkFlag: boolean;
constructor(where: object, checkFlag: boolean);
remove(props: string[]): void;
check(rowValue: any): boolean;
private checkIn;
private checkLike_;
private checkRegex;
private checkComparisionOp_;
}