parse() : pass in the JSON from a serialized object, get a copy of Original Object - OrvilleChomer/orvObjLib GitHub Wiki
This method works much like the JSON.parse() method. The difference is that the JSON string being passed in must be a JSON version of our serialized object.
var orvObjLib = new OrvObjLib();
var sJSON = orvObjLib.stringify(existingObject); // make JSON string
var objCopy = orvObjLib.parse(sJSON); // make a new JavaScript object from JSON string