From 76630538fb595b6f1159e3a17fee50249f02db52 Mon Sep 17 00:00:00 2001 From: Muthu Kumar Date: Fri, 9 Mar 2018 01:21:42 +0530 Subject: [PATCH] Removed unreachable break statements --- isEq.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/isEq.js b/isEq.js index 61e3e99..c92c5f3 100644 --- a/isEq.js +++ b/isEq.js @@ -77,11 +77,9 @@ const isEq = (item1, item2, compareKeys) => { (Array.isArray(item1[Key]) && Array.isArray(item2[Key]))) { if (!isEq(item1[Key], item2[Key])) { return false; - break; }; } else { return false; - break; }; }; };