We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 784af9f commit d38f89eCopy full SHA for d38f89e
1 file changed
packages/svelte/src/reactivity/url.js
@@ -1,3 +1,4 @@
1
+import { INSPECT_SYMBOL } from '../internal/client/constants.js';
2
import { source, set } from '../internal/client/reactivity/sources.js';
3
import { get } from '../internal/client/runtime.js';
4
@@ -150,6 +151,10 @@ export class ReactiveURL extends URL {
150
151
toJSON() {
152
return this.href;
153
}
154
+
155
+ [INSPECT_SYMBOL]() {
156
+ this.href;
157
+ }
158
159
160
export class ReactiveURLSearchParams extends URLSearchParams {
0 commit comments