Static andRequire all conditions to match
Rest ...args: DataFilter<T>[]conditions
Static anyFinds anything (no conditions)
Static containsRequires key.contains(value)
The key
The value
Optional ignoreCase: booleantrue to ignore case
Static customCustom query
The query
Static endsRequires key.endsWith(value)
The key
The value
Optional ignoreCase: booleantrue to ignore case
Static equalsRequires key == value
The key
The value
Static greaterRequires key >= value
The key
The value
Static greaterRequires key > value
The key
The value
Static intoRequires key in values
The key
The values
Static isRequires key != null
The key
Static isRequires key == null
The key
Static lessRequires key <= value
The key
The value
Static lessRequires key < value
The key
The value
Static notNegates the condition
condition
Static notRequires key != value
The key
The value
Static orRequire one of the conditions to match
Rest ...args: DataFilter<T>[]conditions
Static startsRequires key.startsWith(value)
The key
The value
Optional ignoreCase: booleantrue to ignore case
Generated using TypeDoc
Data filter generator