Yes. I already linked module with libyatescript and trying with javascript reference but don't know how to access it.
ObjList* stack;
GenObject* context;
ExpOperation* op = JsParser::parseJSON(text,mutex(),&stack,context);
//May be if empty then empty JSON object
if (!op)
op = new ExpWrapper(0,"JSON");
ExpEvaluator::pushOne(stack,op);
Above one to parse and create object i think. but didn't find to access json value.