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 5, 2025
1 parent baa7c08 commit 823efb4
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions packages/zoe/src/contractSupport/durability.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +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,
/** @type {(value: any, key: string) => any} */
(_, k) => baggage.get(k),
);
const obj = objectMap(thunks, (_, k) => baggage.get(k));
return Promise.resolve(harden(obj));
}

Expand Down

0 comments on commit 823efb4

Please sign in to comment.