12345678910111213141516171819202122232425262728293031323334 |
- function isBrowserBundle() {
- return typeof __SENTRY_BROWSER_BUNDLE__ !== 'undefined' && !!__SENTRY_BROWSER_BUNDLE__;
- }
- function getSDKSource() {
-
- return "npm";
- }
- export { getSDKSource, isBrowserBundle };
|