/**
* Returns a Promise to an object with all the properties resolved as promises
*/exportasyncfunctionresolveValues(obj) {
const entries = Object.entries(obj).map(async ([key, value]) => [key, await value]);
returnObject.fromEntries(awaitPromise.all(entries));
}