Update vendor/benchmark.js. [ci skip]

This commit is contained in:
John-David Dalton
2013-11-17 18:58:08 -08:00
parent fe2ee64ec9
commit 7d1baa8798

View File

@@ -1471,6 +1471,11 @@
destination = data.destination,
currValue = destination[key];
// skip pseudo private properties like `_timerId` which could be a
// Java object in environments like RingoJS
if (key.charAt(0) == '_') {
return;
}
if (value && typeof value == 'object') {
if (_.isArray(value)) {
// check if an array value has changed to a non-array value