How to copy data filtered by easy-search

I’m using easy search to filter data from a collection, i want to know how to copy the filtered data and pass it to a helper.

like:

{{> EasySearch.Input indexes=indexes attributes=searchAttributes}}
    {{#EasySearch.Each index=UsersIndex}}
         <!--pass it to a helper here-->
    {{/EasySearch.Each}}

{{helper param1 param2}}

2 Likes

Thank you, that worked great.