Skip to content

Commit

Permalink
Merge pull request #232 from ronkorving/pluck-to-map
Browse files Browse the repository at this point in the history
Fixes #229 by calling map() instead of pluck()
  • Loading branch information
RangerMauve committed Jan 31, 2018
2 parents b3b3e01 + 48a9381 commit 32b0ea0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/perf/benchmark.js
Original file line number Diff line number Diff line change
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 32b0ea0

Please sign in to comment.