We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Example failure:
const vm = require('vm'); const sbox = { }; vm.createContext(sbox); vm.runInContext(` this.x = 'w00t'; delete this.x; `, sbox); console.log(sbox); // { x: 'w00t' }
Expected sbox.x to be undefined.
sbox.x
undefined