fromJValue

Type: function
Returns a native JS representation of a JSON object from the given JValue, safetied in a try/catch.

Body

function(jv){
  try {
    return JSON.parse(ListHelper.jValueToString(jv));
  } catch(e) {
    return undefined;
  }
}

Classpath

Children