File tree 1 file changed +12
-8
lines changed
packages/non-trapping-shim
1 file changed +12
-8
lines changed Original file line number Diff line number Diff line change 2
2
import { getEnvironmentOption } from '@endo/env-options' ;
3
3
import { ReflectPlus , ObjectPlus , ProxyPlus } from './src/non-trapping-pony.js' ;
4
4
5
+ const { isFrozen } = Object ;
6
+
5
7
const nonTrappingShimOption = getEnvironmentOption (
6
8
'SES_NON_TRAPPING_SHIM' ,
7
9
'disabled' ,
8
10
[ 'enabled' ] ,
9
11
) ;
10
12
11
13
if ( nonTrappingShimOption === 'enabled' ) {
12
- // TODO figure this out, either remove directive or change to
13
- // at-ts-expect-error.
14
- // @ts -ignore type of ReflectPlus vs Reflect, I think
15
- globalThis . Reflect = ReflectPlus ;
14
+ if ( ! [ Reflect , Object , Object . prototype , Proxy ] . some ( isFrozen ) ) {
15
+ // TODO figure this out, either remove directive or change to
16
+ // at-ts-expect-error.
17
+ // @ts -ignore type of ReflectPlus vs Reflect, I think
18
+ globalThis . Reflect = ReflectPlus ;
16
19
17
- globalThis . Object = ObjectPlus ;
18
- // eslint-disable-next-line no-extend-native
19
- Object . prototype . constructor = ObjectPlus ;
20
+ globalThis . Object = ObjectPlus ;
21
+ // eslint-disable-next-line no-extend-native
22
+ Object . prototype . constructor = ObjectPlus ;
20
23
21
- globalThis . Proxy = ProxyPlus ;
24
+ globalThis . Proxy = ProxyPlus ;
25
+ }
22
26
}
You can’t perform that action at this time.
0 commit comments