Skip to content

Commit

Permalink
fix: arrowify the way eslint likes
Browse files Browse the repository at this point in the history
  • Loading branch information
FUDCo committed Mar 16, 2022
1 parent 88bdc31 commit f14dee7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/SwingSet/src/liveslots/virtualObjectManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ export function makeVirtualObjectManager(
return kindHandle;
}

const makeKindHandle = (tag) => {
const makeKindHandle = tag => {
if (!kindIDID) {
kindIDID = `${allocateExportID()}`;
syscall.vatstoreSet('kindIDID', kindIDID);
Expand All @@ -685,7 +685,7 @@ export function makeVirtualObjectManager(
JSON.stringify(durableKindDescriptor),
);
return kindHandle;
}
};

function defineDurableKind(kindHandle, init, actualize, finish) {
const durableKindDescriptor = kindDescriptors.get(kindHandle);
Expand Down

0 comments on commit f14dee7

Please sign in to comment.