Skip to content

Commit

Permalink
build: 0.0.66
Browse files Browse the repository at this point in the history
  • Loading branch information
wss-git committed Feb 22, 2022
1 parent aead01f commit 74af9ab
Show file tree
Hide file tree
Showing 5 changed files with 378 additions and 380 deletions.
4 changes: 3 additions & 1 deletion dist/bridge.js
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,9 @@ function createBridge(otherInit, registerProxy) {
case 'arguments':
case 'caller':
case 'callee':
if (thisOtherHasOwnProperty(object, key)) throw thisThrowCallerCalleeArgumentsAccess(key);
if (typeof object === 'function' && thisOtherHasOwnProperty(object, key)) {
throw thisThrowCallerCalleeArgumentsAccess(key);
}
break;
}
let ret; // @other(unsafe)
Expand Down
Loading

0 comments on commit 74af9ab

Please sign in to comment.