This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Get the word meaning of a word. | |
* | |
* @param {String} word for which the meaning needs to fetched. | |
* @return {String} meaning of the word | |
*/ | |
function WORDMEANING(word) { | |
word = encodeURI(word); | |
var options = { muteHttpExceptions: true } |