@sentry/react-native
Version:
Official Sentry SDK for react-native
6 lines • 429 B
JavaScript
import { replayIntegration } from '@sentry/react';
const browserReplayIntegration = (options = {}) => {
return replayIntegration(Object.assign(Object.assign({}, options), { mask: ['.sentry-react-native-mask', ...(options.mask || [])], unmask: ['.sentry-react-native-unmask:not(.sentry-react-native-mask *) > *', ...(options.unmask || [])] }));
};
export { browserReplayIntegration };
//# sourceMappingURL=browserReplay.js.map