0
0
Fork 0
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:
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, 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,