chore: fix jshint error

This commit is contained in:
minhyeong-kim
2016-02-04 17:47:17 +09:00
parent b59cacf131
commit 3f27ff1c7c

View File

@@ -177,7 +177,9 @@ getJasmineRequireObj().matchersUtil = function(j$) {
}
// Deep compare objects.
var aKeys = keys(a), size = aKeys.length, key;
var aKeys = keys(a), key;
size = aKeys.length;
// Ensure that both objects contain the same number of properties before comparing deep equality.
if (keys(b).length !== size) { return false; }