From 8429c1db36adf70c57a4486574ebc738b4e2a7d7 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sat, 11 Feb 2017 23:11:01 -0800 Subject: [PATCH] Minor format not in `isKey`. --- .internal/isKey.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.internal/isKey.js b/.internal/isKey.js index b28d7a664..45ba8649c 100644 --- a/.internal/isKey.js +++ b/.internal/isKey.js @@ -17,8 +17,7 @@ function isKey(value, object) { return false } const type = typeof value - if (type == 'number' || type == 'boolean' || - value == null || isSymbol(value)) { + if (type == 'number' || type == 'boolean' || value == null || isSymbol(value)) { return true } return reIsPlainProp.test(value) || !reIsDeepProp.test(value) ||