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 11, 2022
1 parent f233e6a commit 3892136
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 @@ -659,7 +659,7 @@ export function makeVirtualObjectManager(
return kindHandle;
}

const makeKindHandle = (tag) => {
const makeKindHandle = tag => {
if (!kindIDID) {
kindIDID = `${allocateExportID()}`;
syscall.vatstoreSet('kindIDID', kindIDID);
Expand All @@ -676,7 +676,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 3892136

Please sign in to comment.