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:
parent
f0ef15ff07
commit
04061f9f39
1 changed files with 2 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue