You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`value is false`|`boolean`| The **return type** is a `boolean` as the result of its statement, indicating the `value` is equal to`false`|
846
845
847
-
The **return value** is a `boolean` indicating whether or not the `value` is a date.
846
+
The **return value** is a `boolean` indicating whether or not the `value` is a `boolean` equal to `false`.
848
847
849
848
**Usage:**
850
849
@@ -859,7 +858,7 @@ isFalse(true); // false; value is false
859
858
860
859
### `isFunction()`
861
860
862
-
Use `isFunction()` or `is.function()` to check if **any**`value` is a `function` type, an instance of [`Function`][js-function] and [`Object`][js-object]. It also **denies** with the regexp that function is a [`class`][ts-classes].
861
+
Use `isFunction()` or `is.function()` to check if **any**`value` is a `function` type, an instance of [`Function`][js-function] and [`Object`][js-object]. It also **denies** with the [`RegExp`][js-regexp] that function is a [`class`][ts-classes].
863
862
864
863
```typescript
865
864
const isFunction:IsFunction= (
@@ -1106,7 +1105,7 @@ isNull(NUMBER); // false
1106
1105
1107
1106
![new][new]
1108
1107
1109
-
Use `isNumberBetween()` or `is.numberBetween()` to check if **any**`value` is a `boolean` type**not** an instance of [`Boolean`][js-boolean] and [`Object`][js-object], or is an `object` type and instance of [`Boolean`][js-boolean] and [`Object`][js-object], and equal to `false`.
1108
+
Use `isNumberBetween()` or `is.numberBetween()` to check if **any**`value` is a `number` type, notinstance of [`Object`][js-object] and [`Number`][js-number] or `object` type and instance of [`Number`][js-number] and [`Object`][js-object], in the specified range.
@@ -1884,7 +1883,7 @@ The **return value** is a `boolean` indicating whether or not the `value` is a `
1884
1883
1885
1884
![new][new]
1886
1885
1887
-
Use `isRegExp()` or `is.regexp()` to check if **any**`value` is a `regexp` type, an instance of `Object` and `RegExp`.
1886
+
Use `isRegExp()` or `is.regexp()` to check if **any**`value` is a regular expression of a [`RegExp`][js-regexp] type, an instance of [`Object`][js-object] and [`RegExp`][js-regexp].
|`value is RegExp`|`boolean`| The **return type** is a `boolean` as the result of its statement, indicating the `value` is a regular expression of a `RegExp` type |
1912
+
|`value is RegExp`|`boolean`| The **return type** is a `boolean` as the result of its statement, indicating the `value` is a regular expression of a [`RegExp`][js-regexp] type |
1914
1913
1915
1914
The **return value** is a `boolean` indicating whether or not the `value` is a regular expression.
0 commit comments