export function checkEitherLoggedInOrNot(){
let options = {
method:'GET',
credentials:'include',
mode: 'cors'
};
ajaxRequest('https://repo.asda.ru/app_dev/Auth',options)
.then(data => {
console.log(data)
})
.catch(error => console.log(error));
}
export function checkEitherLoggedInOrNot(){
let options = {
method:'GET',
credentials:'include',
mode: 'cors'
};
return ajaxRequest('https://repo.asda.ru/app_dev/Auth',options)
.then(data => {
//Тут возвращай что нужно
return data;
})
.catch(error => console.log(error));
}
checkEitherLoggedInOrNot().then(result => {
// где result тот результат, который ты вернул
})