getThis returns globalThis in sloppy mode or undefined in strict mode.
()
| 302 | |
| 303 | /** getThis returns globalThis in sloppy mode or undefined in strict mode. */ |
| 304 | function getThis() { |
| 305 | return this; |
| 306 | } |
| 307 | |
| 308 | if( getThis()) { |
| 309 | // See https://github.com/endojs/endo/blob/master/packages/ses/error-codes/SES_NO_SLOPPY.md |