I started diggin\' in promises and found interesting Promise.all.
It is stated in MDN that
The Promise.all(iterable) method returns a promise
Your get function returns a Promise. You are just passing a reference to the get function. You have to pass an array of Promises
get
Promise
Promises
Promise.all([get("one.jpg")]).then(...);