MentalJS
MentalJS copied to clipboard
JavaScript parser and sandbox
MentalJS
MentalJS is a JavaScript parser and sandbox. It whitelists JavaScript code by adding a "$" suffix to variables and accessors.
Usage
var js = MentalJS();
js.parse({
code:'1+1',
result:function(result){
alert(result)
}
});