Function: match()
match(
path,value):JSONPathNode|undefined
Defined in: src/path/index.ts:107
Return a JSONPathNode instance for the first object found in value matching path.
Parameters
path
string
A JSONPath query.
value
JSON-like data to which the query path will be applied.
Returns
JSONPathNode | undefined
The first node in value matching  path, or undefined if
there are no matches.