-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from reactioncommerce/feat-raw-output
feat: raw output and better URL handling
- Loading branch information
Showing
5 changed files
with
34 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
const { URL } = require("url"); | ||
|
||
/** | ||
* @summary Combine a relative URL with a base URL in a way that | ||
* will gracefully handle extra slashes and such | ||
* @param {String} relativeUrl Relative URL path | ||
* @param {String} baseUrl Base URL path | ||
* @return {String} full URL | ||
*/ | ||
function makeAbsolute(relativeUrl, baseUrl) { | ||
const url = new URL(relativeUrl, baseUrl); | ||
return url.href; | ||
} | ||
|
||
module.exports = makeAbsolute; |