gf3 / sandbox

A nifty JavaScript sandbox for Node.js
ISC License
844 stars 123 forks source link

Options is never used. #46

Open adamjc opened 8 years ago

adamjc commented 8 years ago
function Sandbox(options) {
  ...

  self.options = {
    timeout: 500,
    node:    'node',
    shovel:  path.join(__dirname, 'shovel.js')
  };

  ...
}

The options object is passed through to the sandbox, but never actually used.