We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6af0bfe commit c6b586dCopy full SHA for c6b586d
benchmark/url/legacy-vs-whatwg-url-parse.js
@@ -34,7 +34,7 @@ function useLegacy(n, input) {
34
}
35
36
function useWHATWG(n, input) {
37
- var noDead = url.parse(input);
+ var noDead = new URL(input);
38
bench.start();
39
for (var i = 0; i < n; i += 1) {
40
noDead = new URL(input);
0 commit comments