diff options
author | Garcia <90156453+Phosra@users.noreply.github.com> | 2022-07-06 04:45:01 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-06 13:45:01 +0200 |
commit | 04061f9f3994c471e1e604de5fadaa29d71d5e1e (patch) | |
tree | b819d0e9568f3be0f776df971902750cfd323857 /ext/url/00_url.js | |
parent | f0ef15ff07f26814f6fbb952f195064c0d066919 (diff) |
fix(ext/url): missing primordial (#15096)
Diffstat (limited to 'ext/url/00_url.js')
-rw-r--r-- | ext/url/00_url.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/url/00_url.js b/ext/url/00_url.js index 3d81e5b9d..4e6c7ac47 100644 --- a/ext/url/00_url.js +++ b/ext/url/00_url.js @@ -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, |