diff --git a/perf/perf.js b/perf/perf.js index 68bff8b28..75a1696b1 100644 --- a/perf/perf.js +++ b/perf/perf.js @@ -479,6 +479,18 @@ /*--------------------------------------------------------------------------*/ + suites.push( + Benchmark.Suite('shuffle') + .add('Lo-Dash', function() { + lodash.shuffle(numbers); + }) + .add('Underscore', function() { + _.shuffle(numbers); + }) + ); + + /*--------------------------------------------------------------------------*/ + suites.push( Benchmark.Suite('sortBy callback') .add('Lo-Dash', function() {