1
1
mirror of https://github.com/aelve/guide.git synced 2024-12-25 22:02:58 +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:
Aaron Friel 2017-03-17 15:13:30 -05:00
parent 917273ab58
commit e56c4f22a0

View File

@ -618,6 +618,6 @@ var module = {};
})(module);
var urlpoly = URL || urlpoly.URL;
var urlpoly = urlpoly.URL || URL;
export default urlpoly;