module MDUrl
Changes from joyent/node:
-
No leading slash in paths, e.g. in `url.parse('foo?bar')` pathname is “, not `/`
-
Backslashes are not replaced with slashes, so `\example.org` is treated like a relative path
-
Trailing colon is treated like a part of the path, i.e. in `example.org:foo` pathname is `:foo`
-
Nothing is URL-encoded in the resulting object, (in joyent/node some chars in auth and paths are encoded)
-
`url.parse()` does not have `parseQueryString` argument
-
Removed extraneous result properties: `host`, `path`, `query`, etc., which can be constructed using other parts of the url.
Constants
- VERSION