// iDidVerbCount.js
(function () {
/*global adventurejs A*/
var p = adventurejs.Asset.prototype;
/**
* <strong>iDidVerbCount</strong> is a method to get
* a count of times this asset was used
* as an indirect object by the specified verb.
* <br><br>
* <strong>$iDidCount</strong> is an alias for authors.
* @memberOf adventurejs.Asset
* @method adventurejs.Asset#iDidVerbCount
* @param {String} verb The name of a verb.
* @param {String} ov Direct or indirect object of verb.
* @returns {Int}
*/
p.iDidVerbCount = p.$iDidCount = function Asset_iDidVerbCount(verb, ov) {
if (!ov || ov !== "iov") ov = "iov";
return this.didVerbCount(verb, ov);
};
})();