We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e4a967 commit 238c790Copy full SHA for 238c790
packages/bruno-js/src/sandbox/quickjs/utils/index.js
@@ -25,6 +25,8 @@ const marshallToVm = (value, vm) => {
25
}
26
return obj;
27
28
+ } else if (typeof value === 'function') {
29
+ return vm.newString('[Function (anonymous)]');
30
31
};
32
0 commit comments