From 00b4b0dffb66c5ea4290292498b728ca18c347eb Mon Sep 17 00:00:00 2001 From: Khaled Al-Ansari Date: Thu, 5 Oct 2017 16:47:31 +0300 Subject: [PATCH] Update index.js --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 1eb118d..28f5469 100644 --- a/index.js +++ b/index.js @@ -61,7 +61,7 @@ is.undefined = isOfType('undefined'); is.null = x => x === null; is.string = isOfType('string'); is.number = isOfType('number'); -is.boolean = (value) => value === true || value === false; +is.boolean = value => value === true || value === false; is.symbol = isOfType('symbol'); is.array = Array.isArray;