GoogleChromeLabs / native-url

Node's url module implemented using the built-in URL API.
https://npm.im/native-url
Apache License 2.0
284 stars 11 forks source link

.format mismatch with URL #31

Open Janpot opened 4 years ago

Janpot commented 4 years ago

Expected Behavior

require('url').format(new URL('http://hello/world#'))
// "http://hello/world#"

Actual Behavior

require('native-url').format(new URL('http://hello/world#'))
// "http://hello/world"

Specifications