{"ScriptPreparationCode":"var getSafe = (cb, def) =\u003E {\r\n try { \r\n return cb();\r\n }catch(e){\r\n return def\r\n };\r\n};\r\n\r\nvar obj = {a: {b: {c: {d: {e: {f: [{a: 1}]}}}}}};","TestCases":[{"Name":"Native","Code":"for(var i = 0; i \u003C 100000; i\u002B\u002B){\r\n getSafe(() =\u003E obj.a.b.c.d.e.f[0].a);\r\n}","IsDeferred":false},{"Name":"Lodash","Code":"for(var i = 0; i \u003C 100000; i\u002B\u002B){\r\n _.get(obj, \u0027a.b.c.d.e.f[0].a\u0027)\r\n}","IsDeferred":false}]}