a-synchronous/rubico

`all` allows for nesting

Opened this issue · 0 comments

Allow for nested functions in all, returning a nested object with the execution results

all([1, 2, 3], {
  a: {
    b: [
      get(0),
      get(1),
      get(2),
    ],
  },
}) // { a: { b: [1, 2, 3] } }