Re: [whatwg/url] Changes to file URL path normalization (#544)

URL comparison can be done using ===. `file://foo` and `file://///foo` are different URLs.

File comparison cannot be done using === comparison on URLs. `file://foo` and `file:////foo` point to the same file, despite being different URLs.

Whether you want to use URL comparison, or file comparison, for your module specifiers, is up to you.

-- 
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/pull/544#issuecomment-703741089

Received on Monday, 5 October 2020 16:25:49 UTC