@sentry/node
Version:
Sentry Node SDK using OpenTelemetry for performance instrumentation
16 lines (13 loc) • 397 B
JavaScript
import { defineIntegration, isBrowser, consoleSandbox } from '@sentry/core';
const statsigIntegrationShim = defineIntegration((_options) => {
if (!isBrowser()) {
consoleSandbox(() => {
console.warn("The statsigIntegration() can only be used in the browser.");
});
}
return {
name: "Statsig"
};
});
export { statsigIntegrationShim };
//# sourceMappingURL=statsig.js.map