All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.build.esm.defaultScopes.js Maven / Gradle / Ivy

There is a newer version: 8.39.0
Show newest version
import { getGlobalSingleton } from '@sentry/utils';
import { Scope } from './scope.js';

/** Get the default current scope. */
function getDefaultCurrentScope() {
  return getGlobalSingleton('defaultCurrentScope', () => new Scope());
}

/** Get the default isolation scope. */
function getDefaultIsolationScope() {
  return getGlobalSingleton('defaultIsolationScope', () => new Scope());
}

export { getDefaultCurrentScope, getDefaultIsolationScope };
//# sourceMappingURL=defaultScopes.js.map




© 2015 - 2024 Weber Informatics LLC | Privacy Policy