url-path
Version:
Adaptation of the WHATWG URL API for absolute paths
37 lines (22 loc) • 636 B
Markdown
Adaptation of the WHATWG URL API for absolute paths.
Works in Node 8 and browsers which support the URL API (or have a polyfill).
Only the `href` property is supported.
```js
const url = new URLPath('/foo/bar')
url.searchParams.set('query', 'something')
return url.href
```
Requires Node 8+.
```
npm install url-path
```
- Issue Tracker: https://github.com/paulmelnikow/url-path/issues
- Source Code: https://github.com/paulmelnikow/url-path/
Pull requests welcome!
If you are having issues, please let me know.
The project is licensed under the MIT license.