ES2022 - L'utilisation de la ressource se charge la plus rapide

const resource = await Promise.any([
  fetch('http://example.com/first.txt')
    .then(response => response.text()),
  fetch('http://example.com/second.txt')
    .then(response => response.text()),
]);
Puzzled Puffin