()
| 1196 | }; |
| 1197 | |
| 1198 | let _getSearchResultState = function () { |
| 1199 | return { |
| 1200 | query: jsonSearchState.query, |
| 1201 | total: jsonSearchState.matches.length, |
| 1202 | current: jsonSearchState.index >= 0 ? jsonSearchState.index + 1 : 0 |
| 1203 | }; |
| 1204 | }; |
| 1205 | |
| 1206 | let _selectSearchMatch = function (index) { |
| 1207 | if (!jsonSearchState.matches.length) { |
no outgoing calls
no test coverage detected