mirror of
https://github.com/denoland/deno.git
synced 2025-02-01 20:25:12 -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,
|
ObjectKeys,
|
||||||
SafeArrayIterator,
|
SafeArrayIterator,
|
||||||
StringPrototypeSlice,
|
StringPrototypeSlice,
|
||||||
|
StringPrototypeSplit,
|
||||||
Symbol,
|
Symbol,
|
||||||
SymbolFor,
|
SymbolFor,
|
||||||
SymbolIterator,
|
SymbolIterator,
|
||||||
|
@ -61,7 +62,7 @@
|
||||||
8: protocol,
|
8: protocol,
|
||||||
9: search,
|
9: search,
|
||||||
10: username,
|
10: username,
|
||||||
} = internalParts.split("\n");
|
} = StringPrototypeSplit(internalParts, "\n");
|
||||||
return {
|
return {
|
||||||
href,
|
href,
|
||||||
hash,
|
hash,
|
||||||
|
|
Loading…
Add table
Reference in a new issue