From 3f27ff1c7cda462c9d5a5d43206809598f126492 Mon Sep 17 00:00:00 2001 From: minhyeong-kim Date: Thu, 4 Feb 2016 17:47:17 +0900 Subject: [PATCH] chore: fix jshint error --- src/core/matchers/matchersUtil.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/core/matchers/matchersUtil.js b/src/core/matchers/matchersUtil.js index 25f12254..2c9b716c 100644 --- a/src/core/matchers/matchersUtil.js +++ b/src/core/matchers/matchersUtil.js @@ -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; }