1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-23 07:44:48 -05:00

fix(ext/url): missing primordial (#15096)

This commit is contained in:
Garcia 2022-07-06 04:45:01 -07:00 committed by GitHub
parent f0ef15ff07
commit 04061f9f39
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,6 +20,7 @@
ObjectKeys,
SafeArrayIterator,
StringPrototypeSlice,
StringPrototypeSplit,
Symbol,
SymbolFor,
SymbolIterator,
@ -61,7 +62,7 @@
8: protocol,
9: search,
10: username,
} = internalParts.split("\n");
} = StringPrototypeSplit(internalParts, "\n");
return {
href,
hash,