Skip to main content

Namespace: functions

jsonpath.functions

Enumerations

Classes

Interfaces

Type Aliases

MatchFilterFunctionOptions

Ƭ MatchFilterFunctionOptions: Object

Type declaration

NameTypeDescription
cacheSize?numberThe maximum number of regular expressions to cache.
iRegexpCheck?booleanIf 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?booleanIf true, throw errors from regex checking, construction and matching. The standard and default behavior is to ignore these errors and return false.

Defined in

src/path/functions/match.ts:8


SearchFilterFunctionOptions

Ƭ SearchFilterFunctionOptions: Object

Type declaration

NameTypeDescription
cacheSize?numberThe maximum number of regular expressions to cache. Defaults to 10.
iRegexpCheck?booleanIf 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?booleanIf true, throw errors from regex construction and matching. The standard and default behavior is to ignore these errors and return false.

Defined in

src/path/functions/search.ts:8