From 82e9e150726a477ef814257f946d2f69de367b59 Mon Sep 17 00:00:00 2001 From: Edmund Date: Sat, 16 Jul 2016 19:46:57 +0800 Subject: [PATCH] Fix a typo --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e065acf..a57caa1 100644 --- a/README.md +++ b/README.md @@ -69,8 +69,8 @@ function eq(a, b) { return true; } - if (typeof a !== 'object' || b === null || - typeof a !== 'object' || b === null) { + if (typeof a !== 'object' || a === null || + typeof b !== 'object' || b === null) { return false; }