@dynatrace/react-native-plugin
Version:
This plugin gives you the ability to use the Dynatrace Mobile agent in your react native application.
11 lines (10 loc) • 381 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isEventModifier = void 0;
function isEventModifier(eventModifier) {
return (typeof eventModifier === 'object' &&
eventModifier !== null &&
'modifyEvent' in eventModifier &&
typeof eventModifier.modifyEvent === 'function');
}
exports.isEventModifier = isEventModifier;