From 516b63e1c4d4d789d279de7e87dd7d20b65fc770 Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Sat, 9 Jan 2016 17:21:37 +0100 Subject: [PATCH] fix benchmark for v2 --- perf/util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perf/util.js b/perf/util.js index ffd6cbe..5984384 100644 --- a/perf/util.js +++ b/perf/util.js @@ -11,7 +11,7 @@ exports.suite = function () { console.log(String(event.target)) }) .on('complete', function () { - console.log('Fastest is ' + this.filter('fastest').pluck('name')) + console.log('Fastest is ' + this.filter('fastest').map('name')) }) .run({ async: true }) }) -- 2.34.1