File tree 1 file changed +4
-8
lines changed
1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ export default class IncludeFragmentElement extends HTMLElement {
66
66
// We will return string or error for API backwards compatibility. We can consider
67
67
// returning TrustedHTML in the future.
68
68
get data ( ) : Promise < string > {
69
- return this . #getStringOrErrorData ( )
69
+ return this . #getStringData ( )
70
70
}
71
71
72
72
#busy = false
@@ -118,7 +118,7 @@ export default class IncludeFragmentElement extends HTMLElement {
118
118
}
119
119
120
120
load ( ) : Promise < string > {
121
- return this . #getStringOrErrorData ( )
121
+ return this . #getStringData ( )
122
122
}
123
123
124
124
fetch ( request : RequestInfo ) : Promise < Response > {
@@ -194,12 +194,8 @@ export default class IncludeFragmentElement extends HTMLElement {
194
194
}
195
195
}
196
196
197
- async #getStringOrErrorData( ) : Promise < string > {
198
- const data = await this . #getData( )
199
- if ( data instanceof Error ) {
200
- throw data
201
- }
202
- return data . toString ( )
197
+ async #getStringData( ) : Promise < string > {
198
+ return ( await this . #getData( ) ) . toString ( )
203
199
}
204
200
205
201
// Functional stand in for the W3 spec "queue a task" paradigm
You can’t perform that action at this time.
0 commit comments