diff --git a/README.md b/README.md index 9af60ec..a9b221e 100644 --- a/README.md +++ b/README.md @@ -24,8 +24,9 @@ isType('', String) // returns true getType('') // returns 'String' ``` -**Exception:**
-Checking for `isNumber` and `isDate` will return `false` if the payload is `NaN` or an invalid date. +#### Useful number & date exception: + +Checking for `isNumber` and `isDate` will return `false` if the payload is `NaN` or an invalid date. This is done intentionally and especially useful when you need to check if numbers or dates are correct in your functions! ```js isNumber(NaN) // returns false