mmckegg / notevil

Evalulate javascript like the built-in javascript eval() method but safely.
195 stars 24 forks source link

notevil is supporting the in operator #32

Open Muthu2020 opened 6 years ago

Muthu2020 commented 6 years ago

For example: var condition = (1 in [1,2,3]); Need to check the condition as safeEval(condition);

This above statement is execute or not.

Can someone help me out?