Skip to content

Commit

Permalink
chore(zoe): Remove irrelevant JSDoc type override
Browse files Browse the repository at this point in the history
  • Loading branch information
gibson042 committed Mar 4, 2025
1 parent 50ff04b commit 9451aa7
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions packages/zoe/src/contractSupport/durability.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,7 @@ export const provideAll = (baggage, thunks) => {
// assume if any keys are defined they all are
const inBaggage = baggage.has(keys[0]);
if (inBaggage) {
const obj = objectMap(
thunks,
(_, k) => baggage.get(k),
);
const obj = objectMap(thunks, (_, k) => baggage.get(k));
return Promise.resolve(harden(obj));
}

Expand Down

0 comments on commit 9451aa7

Please sign in to comment.