https://github.com/gf3/sandbox#readmeを使用していますが、このサンドボックスを介してコードから JavaScript コードにデータを渡す方法がわかりません。例えば
var s = new sandBox();
s.run("(function(name) { return 'Hi there, ' + name + '!'; })('Fabio')", function(output) {
console.log("Example 2: " + output.result + "\n")
})
この関数にデータを渡したいのですが、どうすればよいですか?