mirror of
https://github.com/aelve/guide.git
synced 2024-12-26 14:23:14 +03:00
Fixed urlpoly for IE11.
Module is empty _or_ has a polyfilled URL object. Case 1: Empty if "browser's URL implementation is valid", see line 20. Case 2: module.URL is polyfilled otherwise.
This commit is contained in:
parent
917273ab58
commit
e56c4f22a0
@ -618,6 +618,6 @@ var module = {};
|
|||||||
|
|
||||||
})(module);
|
})(module);
|
||||||
|
|
||||||
var urlpoly = URL || urlpoly.URL;
|
var urlpoly = urlpoly.URL || URL;
|
||||||
|
|
||||||
export default urlpoly;
|
export default urlpoly;
|
||||||
|
Loading…
Reference in New Issue
Block a user