// hasDirectObjects.js
(function () {
/*global adventurejs A*/
var p = adventurejs.Asset.prototype;
/**
* <strong>hasDirectObjects</strong> is a method to check
* whether this asset has any particular direct objects specified
* by the author for use with the specified verb.
* @memberOf adventurejs.Asset
* @method adventurejs.Asset#hasDirectObjects
* @param {String} verb
* @returns {Boolean}
*/
p.hasDirectObjects = function Asset_hasDirectObjects(verb) {
if (!this.isIOV(verb)) return false;
// is this.iov[verb].with_assets !empty?
if (this.iov[verb]?.with_assets.length) {
return true;
}
// is this.iov[verb].with_classes !empty?
if (this.iov[verb]?.with_classes.length) {
return true;
}
return false;
};
})();