"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = componentIsMatch;
function componentIsMatch(component, name) {
return !!component && !!component.$options && component.$options._componentTag.toString().toLowerCase() === name;
}