{"ScriptPreparationCode":"function getValueAt(object, path) {\r\n const pathParts = path.split(\u0027.\u0027);\r\n\r\n return pathParts.reduce((agg, item) =\u003E agg \u0026\u0026 agg[item], object);\r\n}\r\n\r\nvar data = {prop1: { prop2: { value: \u0027abc\u0027}}}","TestCases":[{"Name":"_.orderBy","Code":"_.get(data, \u0027prop1.prop2.value\u0027);","IsDeferred":false},{"Name":"custom","Code":"getValueAt(data, \u0027prop1.prop2.value\u0027);","IsDeferred":false}]}