- From: 李的序 <notifications@github.com>
- Date: Wed, 10 Jun 2020 21:05:08 -0700
- To: whatwg/url <url@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Thursday, 11 June 2020 04:05:20 UTC
Given `new URL("db://x/y/z")`.
Chrome, Firefox, Edge:
```js
pathname: "//x/y/z",
```
NodeJS:
```js
hostname: 'x',
pathname: '/y/z',
```
-----------------------------------------
Given `new URL("file:x/y/z")`.
Chrome, Edge:
```js
host: "x"
pathname: "/y/z"
```
Firefox, NodeJS:
```js
pathname: "/x/y/z"
```
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/url/issues/526
Received on Thursday, 11 June 2020 04:05:20 UTC