// getPossessiveDeterminer.js
(function () {
/* global AdventureJS A */
var p = AdventureJS.Dictionary.prototype;
/**
* Determine whether string is recognized as a possessive
* pronoun and return the string.
* @memberOf AdventureJS.Dictionary
* @method AdventureJS.Dictionary#getPossessiveDeterminer
* @param {String} word
* @returns {String|Boolean}
*/
p.getPossessiveDeterminer = function Dictionary_getPossessiveDeterminer(
word
) {
if (this.possessive_determiners.includes(word)) return word;
else return false;
};
})();