I'd like to use JS functions in my Python script to decode obfuscated text. I can send the input parameters to JS, but have not been able to use the results as return variables in Python. I tried with ...
var Library = $class({ // constructor initialize : function(name){ this.name = name; // private instance property }, // public instance methods public : { getName ...