[SES](https://github.com/endojs/endo/blob/master/packages/ses/README.md) is a package from a better-maintained repo [endojs](https://github.com/endojs/endo) (previously [realm-shim](https://github.com/Agoric/realms-shim)) Example ```js import "ses"; const compartment = new Compartment({ globals: {}, __options__: true, }); console.log( compartment.evaluate(` const a = {}; a.i = 1; a; `) ); ``` output ```js {i: 1} ```