Hacker News new | ask | show | jobs
by notpushkin 994 days ago
Aside, but there's another kind of syntax possible here:

    const result = (
      await fetch(url)
        .json()
        ::Object.keys
        .map(key => ...)
        ::new ByteArray
    );