## All ### Instructions Create a function `all` that works like `Promise.all` but with objects. (instead of arrays) ### Notions - https://nan-academy.github.io/js-training/examples/promise.js - https://devdocs.io/javascript/global_objects/promise/all ### Code provided ```js Promise.all = undefined ```