export default function promiseAny(iterable) {
  // TODO: consume a synchronous iterable, resolve first fulfillment, aggregate all rejections
  throw new Error('Not implemented');
}
Run tests to see results.