debug-build.js 528 B

1234567891011
  1. Object.defineProperty(exports, '__esModule', { value: true });
  2. /**
  3. * This serves as a build time flag that will be true by default, but false in non-debug builds or if users replace `__SENTRY_DEBUG__` in their generated code.
  4. *
  5. * ATTENTION: This constant must never cross package boundaries (i.e. be exported) to guarantee that it can be used for tree shaking.
  6. */
  7. const DEBUG_BUILD = (typeof __SENTRY_DEBUG__ === 'undefined' || __SENTRY_DEBUG__);
  8. exports.DEBUG_BUILD = DEBUG_BUILD;
  9. //# sourceMappingURL=debug-build.js.map