Skip to content

Commit

Permalink
fix(E): address PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfig committed Dec 10, 2019
1 parent d6fbdff commit a529982
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/eventual-send/src/E.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ export default function makeE(HandledPromise) {
},
});

E.G = o => makeEGetterProxy(o);
E.resolve = value => HandledPromise.resolve(value);
E.G = makeEGetterProxy;
E.resolve = HandledPromise.resolve;

return harden(E);
}

0 comments on commit a529982

Please sign in to comment.