Skip to content

Commit 3195fb4

Browse files
jasnellevanlucas
authored andcommitted
url: set toStringTag for the URL class
PR-URL: #10562 Fixes: #10554 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]>
1 parent d08463a commit 3195fb4

File tree

2 files changed

+29
-14
lines changed

2 files changed

+29
-14
lines changed

lib/internal/url.js

+8-14
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,10 @@ class URL {
221221
parse(this, input, base);
222222
}
223223

224+
get [Symbol.toStringTag]() {
225+
return this instanceof URL ? 'URL' : 'URLPrototype';
226+
}
227+
224228
get [special]() {
225229
return (this[context].flags & binding.URL_FLAGS_SPECIAL) !== 0;
226230
}
@@ -640,15 +644,11 @@ class URLSearchParams {
640644

641645
// "associated url object"
642646
this[context] = null;
647+
}
643648

644-
// Class string for an instance of URLSearchParams. This is different from
645-
// the class string of the prototype object (set below).
646-
Object.defineProperty(this, Symbol.toStringTag, {
647-
value: 'URLSearchParams',
648-
writable: false,
649-
enumerable: false,
650-
configurable: true
651-
});
649+
get [Symbol.toStringTag]() {
650+
return this instanceof URLSearchParams ?
651+
'URLSearchParams' : 'URLSearchParamsPrototype';
652652
}
653653

654654
append(name, value) {
@@ -803,12 +803,6 @@ class URLSearchParams {
803803
}
804804
// https://heycam.github.io/webidl/#es-iterable-entries
805805
URLSearchParams.prototype[Symbol.iterator] = URLSearchParams.prototype.entries;
806-
Object.defineProperty(URLSearchParams.prototype, Symbol.toStringTag, {
807-
value: 'URLSearchParamsPrototype',
808-
writable: false,
809-
enumerable: false,
810-
configurable: true
811-
});
812806

813807
// https://heycam.github.io/webidl/#dfn-default-iterator-object
814808
function createSearchParamsIterator(target, kind) {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
'use strict';
2+
3+
require('../common');
4+
const assert = require('assert');
5+
const URL = require('url').URL;
6+
const toString = Object.prototype.toString;
7+
8+
const url = new URL('http://example.org');
9+
const sp = url.searchParams;
10+
11+
const test = [
12+
[toString.call(url), 'URL'],
13+
[toString.call(Object.getPrototypeOf(url)), 'URLPrototype'],
14+
[toString.call(sp), 'URLSearchParams'],
15+
[toString.call(Object.getPrototypeOf(sp)), 'URLSearchParamsPrototype']
16+
];
17+
18+
test.forEach((row) => {
19+
assert.strictEqual(row[0], `[object ${row[1]}]`,
20+
`${row[0]} !== [object ${row[1]}]`);
21+
});

0 commit comments

Comments
 (0)