mirror of https://github.com/embarklabs/embark.git
buildUrlFromConfig -- canonicalHost
This commit is contained in:
parent
17e70e03dd
commit
96aeeaf0d1
|
@ -1,5 +1,6 @@
|
|||
let http = require('follow-redirects').http;
|
||||
let https = require('follow-redirects').https;
|
||||
const {canonicalHost} = require('./host');
|
||||
|
||||
function joinPath() {
|
||||
const path = require('path');
|
||||
|
@ -314,7 +315,7 @@ function buildUrl (protocol, host, port){
|
|||
function buildUrlFromConfig (configObj){
|
||||
if(!configObj) throw new Error('[utils.buildUrlFromConfig]: config object must cannot be null');
|
||||
if(!configObj.host) throw new Error('[utils.buildUrlFromConfig]: object must contain a \'host\' property');
|
||||
return this.buildUrl(configObj.protocol, configObj.host, configObj.port);
|
||||
return this.buildUrl(configObj.protocol, canonicalHost(configObj.host), configObj.port);
|
||||
}
|
||||
|
||||
function compact(array) {
|
||||
|
|
Loading…
Reference in New Issue