export default function promiseAny(promises) {
  // TODO: resolve on first fulfillment; reject with AggregateError if all reject
  throw new Error('Not implemented');
}
Run tests to see results.