(list)
| 8 | * @private |
| 9 | */ |
| 10 | export function resolve(list) { |
| 11 | let out = Array.isArray(list) ? [] : {}; |
| 12 | for (let i in list) if (list.hasOwnProperty(i)) out[i] = list[i](); |
| 13 | return out; |
| 14 | } |
| 15 | |
| 16 | /** reduce() callback that pushes values into an Array accumulator |
| 17 | * @private |
no outgoing calls
no test coverage detected
searching dependent graphs…