// getAbbreviation.js
(function () {
/* global AdventureJS A */
var p = AdventureJS.Dictionary.prototype;
/**
* Check if specified word is listed in dictionary.abbreviations.
* @memberOf AdventureJS.Dictionary
* @method AdventureJS.Dictionary#getAbbreviation
* @kind function
* @param {String} word
* @ajsinternal
*/
p.getAbbreviation = function Dictionary_getAbbreviation(word) {
return this.abbreviations[word];
};
})();