* Returns a method that resolves the numbers 0 through 6. * @return {function():!Promise } * @template T
(valueFunction)
| 1578 | * @template T |
| 1579 | */ |
| 1580 | function getAsyncValueFunction(valueFunction) { |
| 1581 | return async () => valueFunction(); |
| 1582 | } |
| 1583 | |
| 1584 | /** |
| 1585 | * Returns a method that resolves each of its given arguments |