Update index.js
This commit is contained in:
parent
1ad87e2867
commit
00b4b0dffb
1 changed files with 1 additions and 1 deletions
2
index.js
2
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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue