From 48a9381b4ff8c771d4768efffbc4f1f5c761e2ad Mon Sep 17 00:00:00 2001 From: Ron Korving Date: Wed, 31 Jan 2018 10:49:39 +0900 Subject: [PATCH] Fixes #229 by calling map() instead of pluck() --- test/perf/benchmark.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/perf/benchmark.js b/test/perf/benchmark.js index b5af6d8b..9b10beda 100644 --- a/test/perf/benchmark.js +++ b/test/perf/benchmark.js @@ -47,7 +47,7 @@ suite console.log(String(event.target)); }) .on('complete', function() { - console.log('\nFastest is ' + this.filter('fastest').pluck('name')); + console.log('\nFastest is ' + this.filter('fastest').map('name')); }) .run(true);