Async et Await

https://guide-angular.wishtack.io/angular/callback-hell-vs.-promise-vs.-async-await/async-await

async maFonction(){
  try {
    const sourceCommandes = await http.get('assets/fichier.txt', { responseType: 'text' }).toPromise();
  } catch (error) {
    console.error("Le fichier n’a pas pu être récupéré");
  }
}