Namespace: functions
jsonpath.functions
Enumerations
Classes
Interfaces
Type Aliases
MatchFilterFunctionOptions
Ƭ MatchFilterFunctionOptions: Object
Type declaration
Name | Type | Description |
---|---|---|
cacheSize? | number | The maximum number of regular expressions to cache. |
iRegexpCheck? | boolean | If true, check that regexp patterns are valid according to I-Regexp. The standard and default behavior is to silently return false if a pattern is invalid. If iRegexpCheck is true and throwErrors is true, an IRegexpError will be thrown. |
throwErrors? | boolean | If true, throw errors from regex checking, construction and matching. The standard and default behavior is to ignore these errors and return false. |
Defined in
SearchFilterFunctionOptions
Ƭ SearchFilterFunctionOptions: Object
Type declaration
Name | Type | Description |
---|---|---|
cacheSize? | number | The maximum number of regular expressions to cache. Defaults to 10. |
iRegexpCheck? | boolean | If true, check that regexp patterns are valid according to I-Regexp. The standard and default behavior is to silently return false if a pattern is invalid. If iRegexpCheck is true and throwErrors is true, an IRegexpError will be thrown. |
throwErrors? | boolean | If true, throw errors from regex construction and matching. The standard and default behavior is to ignore these errors and return false. |