You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -61,11 +61,9 @@ on the [JMESPath site](http://jmespath.org/specification.html).
61
61
As an extension to common JMESPath API and available in jmespath.js only,
62
62
custom filter functions can be specified through the ``functionTable``
63
63
property of the optional third argument of the ``search`` function.
64
-
The custom functions can even call third-party
65
-
libraries via closure. The following example shows how a custom
66
-
filter function `contains_ci` is implemented with
67
-
[`lodash`](https://lodash.com/) library
68
-
to provide case insensitive string matching
64
+
A custom function can even call third-party
65
+
libraries via closure. Custom functions can by asynchronous. The following example shows how a custom async filter function `contains_ci` is implemented with
66
+
[`lodash`](https://lodash.com/) library to provide case insensitive string matching
69
67
70
68
```
71
69
const jmespath = require('jmespath')
@@ -75,13 +73,15 @@ let res = jmespath.search([{ a: 'foo' }], "[?contains_ci(a, 'FOO')]", {
0 commit comments