core-js
Version:
Standard library
15 lines (12 loc) • 459 B
JavaScript
;
var $ = require('../internals/export');
var call = require('../internals/function-call');
var getBuiltInPrototypeMethod = require('../internals/get-built-in-prototype-method');
var toString = getBuiltInPrototypeMethod('URL', 'toString');
// `URL.prototype.toJSON` method
// https://url.spec.whatwg.org/#dom-url-tojson
$({ target: 'URL', proto: true, enumerable: true }, {
toJSON: function toJSON() {
return call(toString, this);
}
});