Package Exports
- urljoin.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (urljoin.js) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
urljoin.js
An intuitive and robust module for joining URLs. Works nice in node
and browserify
.
Install
npm i urljoin.js
Example
var urljoin = require('urljoin.js');
urljoin('http://abc.com', 'team', 'about');
// => 'http://abc.com/team/about'