Update vendor.

This commit is contained in:
John-David Dalton
2014-05-25 23:55:59 -07:00
parent 2e5052a7fa
commit c5237a926d
3 changed files with 311 additions and 243 deletions

View File

@@ -1583,7 +1583,7 @@
var bench = clone._original,
stringable = isStringable(bench.fn),
count = bench.count = clone.count,
decompilable = stringable || (support.decompilation && (_.has(clone, 'setup') || _.has(clone, 'teardown'))),
decompilable = stringable || (support.decompilation && (clone.setup !== _.noop || clone.teardown !== _.noop)),
id = bench.id,
name = bench.name || (typeof id == 'number' ? '<Test #' + id + '>' : id),
result = 0;