Add is.directInstanceOf()
This commit is contained in:
parent
4ce2ee9d39
commit
fe344fd7eb
3 changed files with 27 additions and 0 deletions
14
readme.md
14
readme.md
|
|
@ -136,6 +136,20 @@ is.boundFunction(function () {});
|
|||
|
||||
#### Miscellaneous
|
||||
|
||||
##### .directInstanceOf(value, klass)
|
||||
|
||||
Returns `true` if value is a direct instance of a class of type `klass`.
|
||||
|
||||
```js
|
||||
class ErrorSubclass extends Error {};
|
||||
|
||||
is.directInstanceOf(new Error(), Error);
|
||||
//=> true
|
||||
|
||||
is.directInstanceOf(new ErrorSubclass(), Error);
|
||||
//=> false
|
||||
```
|
||||
|
||||
##### .truthy(value)
|
||||
|
||||
Returns `true` for all values that evaluate to true in a boolean context:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue