File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
packages/deno/src/integrations Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -17,10 +17,6 @@ interface BreadcrumbsOptions {
17
17
18
18
const INTEGRATION_NAME = 'Breadcrumbs' ;
19
19
20
- /**
21
- * This breadcrumbsIntegration is almost the same as the one from @sentry/browser.
22
- * The Deno-version does not support browser-specific APIs like dom, xhr and history.
23
- */
24
20
const _breadcrumbsIntegration = ( ( options : Partial < BreadcrumbsOptions > = { } ) => {
25
21
const _options = {
26
22
console : true ,
@@ -45,6 +41,10 @@ const _breadcrumbsIntegration = ((options: Partial<BreadcrumbsOptions> = {}) =>
45
41
} ;
46
42
} ) satisfies IntegrationFn ;
47
43
44
+ /**
45
+ * This breadcrumbsIntegration is almost the same as the one from @sentry/browser.
46
+ * The Deno-version does not support browser-specific APIs like dom, xhr and history.
47
+ */
48
48
export const breadcrumbsIntegration = defineIntegration ( _breadcrumbsIntegration ) ;
49
49
50
50
/**
You can’t perform that action at this time.
0 commit comments