var getConfig=(function(){
return{
topNav:fetch('templater/topNav.tpl').then(function(response){
return response.text();
}).then(function(response){
// для того, чтоб мне теперь положить полученый html в config.topNav
// мне нужно здесь пописать config.topNav=response;
return response;
})
}
})();