(object, prop)
| 88098 | return Object.prototype.hasOwnProperty.call(object, prop); |
| 88099 | } |
| 88100 | function getOwnProperty(object, prop) { |
| 88101 | return hasOwnProperty(object, prop) && object[prop]; |
| 88102 | } |
| 88103 | function getComponentName(componentClass) { |
| 88104 | var componentName = getOwnProperty(componentClass, "layerName") || getOwnProperty(componentClass, "componentName"); |
| 88105 | if (!componentName) (0, _logDefault.default).once(0, "".concat(componentClass.name, ".componentName not specified"))(); |
no test coverage detected