Skip to content

Commit

Permalink
Flatten arrow function to have no block.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrolig5267319 committed Feb 8, 2024
1 parent be79be3 commit 7f43b97
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/embind/emval.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,7 @@ var LibraryEmVal = {
},

_emval_clone__deps: ['$emval_handles'],
_emval_clone: (handle) => {
return Emval.toHandle(emval_handles.get(handle));
},
_emval_clone: (handle) => Emval.toHandle(emval_handles.get(handle)),

_emval_free__deps: ['$emval_handles'],
_emval_free: (handle) => {
Expand Down

0 comments on commit 7f43b97

Please sign in to comment.