summaryrefslogtreecommitdiff
path: root/cli/rt/11_url.js
AgeCommit message (Collapse)Author
2020-09-17refactor: use Symbol.for instead of Symbol in cli/rt/ (#7537)Bartek Iwańczuk
2020-09-17refactor: disable URL.createObjectUrl (#7543)Bartek Iwańczuk
2020-09-16refactor: remove dispatch_json.js from cli/rt and cli/tsc (#7521)Bartek Iwańczuk
Instead use Deno.core.jsonOpSync and Deno.core.jsonOpAsync
2020-09-01fix(URLSearchParams): fix handling of + character (#7314)Yoshiya Hinosawa
2020-08-29fix(URL): Add missing part assignment (#7239)Nayeem Rahman
2020-08-21fix(URL): Don't encode "'" in non-special query strings (#7152)Nayeem Rahman
2020-08-17Fix handling of multiple spaces in URLSearchParams (#7068)Joel Chippindale
This ensures that all spaces are set to be "+" in the string rather than just the first and brings deno into line with how browsers handle spaces in URLSearchParams, see #7001.
2020-08-12fix: URLSearchParams.toString() behaviour is different from browsers (#7017)Prabhanjan
2020-07-23fix: Improve URL compatibility (#6807)Nayeem Rahman
- Fix protocol regex. - Truncate repeated leading slashes in file paths. - Make drive letter support platform-independent. - Drop the hostname if a drive letter is parsed. - Fix drive letter normalization and basing. - Allow basing over the host. - Fix same-protocol basing. - Remove Windows UNC path support. - Reverts #6418. This is non-standard. Wouldn't be too much of a problem but it makes other parts of the spec hard to realize.
2020-07-23Rename cli/js2 to cli/rt (#6857)Ryan Dahl