¿Cómo escribo un swtich para el siguiente condicional?
Si la url contiene "foo", entonces settings.base_url es "bar".
Lo siguiente es lograr el efecto requerido, pero tengo la sensación de que esto sería más manejable en un cambio:
var doc_location = document.location.href;
var url_strip = new RegExp("http:\/\/.*\/");
var base_url = url_strip.exec(doc_location)
var base_url_string = base_url[0];
//BASE URL CASES
// LOCAL
if (base_url_string.indexOf('xxx.local') > -1) {
settings = {
"base_url" : "http://xxx.local/"
};
}
// DEV
if (base_url_string.indexOf('xxx.dev.yyy.com') > -1) {
settings = {
"base_url" : "http://xxx.dev.yyy.com/xxx/"
};
}
switch(true) { case /foo/.test(bar): ....