Skip to content

Commit

Permalink
Fixes #229 by calling map() instead of pluck()
Browse files Browse the repository at this point in the history
  • Loading branch information
Ron Korving committed Jan 31, 2018
1 parent b3b3e01 commit 48a9381
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/perf/benchmark.js
Expand Up @@ -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);

0 comments on commit 48a9381

Please sign in to comment.