(word, language)
| 177 | } |
| 178 | |
| 179 | async function fetchFromSource (word, language) { |
| 180 | let dictionaryData = await queryInternet(word, language); |
| 181 | |
| 182 | return dictionaryData; |
| 183 | } |
| 184 | |
| 185 | async function findDefinitions (word, language, { include }) { |
| 186 | let dictionaryData = await fetchFromSource(word, language); |
no test coverage detected