This repository was archived by the owner on Jul 13, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 30
30
console . assert ( load . status == 'linked' , 'is linked ' + load . name ) ;
31
31
return load . module . module ;
32
32
}
33
+
34
+ function doEnsureEvaluated ( ) { }
33
35
} ) ( ) ;
Original file line number Diff line number Diff line change @@ -542,7 +542,7 @@ function logloads(loads) {
542
542
exc = addToError ( exc , 'Error loading "' + load . name + '" at ' + ( load . address || '<unknown>' ) ) ;
543
543
}
544
544
else {
545
- exc = addToError ( exc , 'Error linking "' + linkSet . loads [ 0 ] . name + '" at ' + ( linkSet . loads [ 0 ] . address || '<unknwon >' ) ) ;
545
+ exc = addToError ( exc , 'Error linking "' + linkSet . loads [ 0 ] . name + '" at ' + ( linkSet . loads [ 0 ] . address || '<unknown >' ) ) ;
546
546
}
547
547
548
548
Original file line number Diff line number Diff line change 1
- // from https://gist.github.com/Yaffle/1088850
1
+ // from https://gist.github.com/Yaffle/1088850
2
+ if ( typeof URL === 'undefined' )
3
+ URL = ( function ( ) {
2
4
function URL ( url , baseURL ) {
3
5
if ( typeof url != 'string' )
4
6
throw new TypeError ( 'URL must be a string' ) ;
64
66
this . pathname = pathname ;
65
67
this . search = search ;
66
68
this . hash = hash ;
67
- }
69
+ }
70
+ return URL ;
71
+ } ) ( ) ;
You can’t perform that action at this time.
0 commit comments