gplx/mediawiki/resources/lib/url/URL-toJSON.js

7 lines
148 B
JavaScript

// eslint-disable-next-line no-unused-vars
(function (global) {
global.URL.prototype.toJSON = function toJSON() {
return this.href;
}
}(self));