From 6eb4dbf9cdd81b8477dd9f43f12f1a2e914c720e Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Fri, 14 Mar 2014 00:48:33 -0700 Subject: [PATCH] Add slow path note to `_.times` with `thisArg` benchmark. [ci skip] --- perf/perf.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perf/perf.js b/perf/perf.js index 02e6faa38..b2ce9231b 100644 --- a/perf/perf.js +++ b/perf/perf.js @@ -1856,7 +1856,7 @@ ); suites.push( - Benchmark.Suite('`_.times` with `thisArg`') + Benchmark.Suite('`_.times` with `thisArg` (slow path)') .add(buildName, '\ var result = [];\ lodash.times(limit, function(n) { result.push(this.sin(n)); }, Math)'