Sourced from <https://github.com/Financial-Times/polyfill-library>. Bug: T103379 Change-Id: Ia524d9d5ed884296007dae1caf9599c0c0b45c47
6 lines
148 B
JavaScript
6 lines
148 B
JavaScript
// eslint-disable-next-line no-unused-vars
|
|
(function (global) {
|
|
global.URL.prototype.toJSON = function toJSON() {
|
|
return this.href;
|
|
}
|
|
}(self));
|