{"ScriptPreparationCode":"var data = Array(1000000).fill().map((x, i) =\u003E ({\r\n filtering: true,\r\n mapping: 42 \u002B i\r\n}));","TestCases":[{"Name":"Lodash map then max","Code":"_.max(_.map(data, \u0027mapping\u0027))","IsDeferred":false},{"Name":"Lodash map/max fusion","Code":"_(data).map(\u0027mapping\u0027).max()","IsDeferred":false},{"Name":"Lodash sort then last","Code":"_(data).sortBy(\u0027mapping\u0027).last().mapping","IsDeferred":false},{"Name":"Lodash map/max fusion with closure","Code":"_(data).map(o =\u003E o.mapping).max()","IsDeferred":false},{"Name":"Lodash maxBy","Code":"_.maxBy(data, \u0027mapping\u0027).mapping","IsDeferred":false},{"Name":"Lodash map then max with closure","Code":"_.max(_.map(data, o=\u003Eo.mapping))","IsDeferred":false}]}