summaryrefslogtreecommitdiff
path: root/js/url_test.ts
AgeCommit message (Collapse)Author
2019-10-04Merge deno_cli_snapshots into deno_cli (#3064)Ryan Dahl
2019-09-11Default base URL path to '/' (#2921)Nayeem Rahman
2019-09-05Fix basing in URL constructor (#2867)Nayeem Rahman
2019-06-10fix bug in URL (#2495)迷渡
2019-04-29removes ? from URL when deleting all params (#2217)迷渡
2019-04-21Fix eslint warnings (#2151)Ryan Dahl
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> Co-authored-by: LE GOFF Vincent <g_n_s@hotmail.fr>
2019-03-06Upgrade deno_std (#1892)Ryan Dahl
A major API change was that asserts are imported from testing/asserts.ts now rather than testing/mod.ts and assertEqual as renamed to assertEquals to conform to what is most common in JavaScript.
2019-01-21chore: update license lines (#1557)Yoshiya Hinosawa
2019-01-21Revert "Use the same parse processing at contractor of URL with setters (#1549)"Ryan Dahl
Right now every instance of URL which has a basePath passed will share the same instance of parts, so a change to one of them will change them all. https://github.com/denoland/deno/pull/1549#issuecomment-455896081 This reverts commit 9e1f5ccb8b06c01c1330ed38aeba83cfc51f5387.
2019-01-20Use the same parse processing at contractor of URL with setters (#1549)Daijiro Wachi
2018-12-17Add URL implementation (#1359)Kitson Kelly