Comment.prototype.getTags = function(tagName) {
  return _.where(this.data.tags, function (tag) {
    return tag.type === tagName;
  });
};