-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDictionary.js
35 lines (32 loc) · 990 Bytes
/
Dictionary.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*
Created by: RemcoE33
https://github.com/RemcoE33/apps-script-codebase
*/
/**
* Returns definition, example and synonym.
*
* @param {A1:A5} range - Input range.
* @param {true} synonyms - Add synonyms.
* @return {array} range definitions, examples and synonyms.
* @customfunction
*/
function DICTIONARY(words, synonyms){
if(!Array.isArray(words)){
words = [[words]]
}
const output = [];
const urls = words.flat().map(word => `https://api.dictionaryapi.dev/api/v2/entries/en/${word}`)
const response = UrlFetchApp.fetchAll(urls);
response.forEach(url => {
const data = JSON.parse(url.getContentText());
const definition = data[0].meanings[0].definitions[0].definition
const example = data[0].meanings[0].definitions[0].example
if (synonyms){
const synonym = data[0].meanings[0].definitions[0].synonyms.join(', ')
output.push([definition, example, synonym])
} else {
output.push([definition, example])
}
})
return output;
}