flow like the river
This commit is contained in:
commit
013fe673f3
42435 changed files with 5764238 additions and 0 deletions
22
BACK_BACK/node_modules/is-obj/index.d.ts
generated
vendored
Executable file
22
BACK_BACK/node_modules/is-obj/index.d.ts
generated
vendored
Executable file
|
|
@ -0,0 +1,22 @@
|
|||
/**
|
||||
Check if a value is an object.
|
||||
|
||||
Keep in mind that array, function, regexp, etc, are objects in JavaScript.
|
||||
|
||||
@example
|
||||
```
|
||||
import isObject = require('is-obj');
|
||||
|
||||
isObject({foo: 'bar'});
|
||||
//=> true
|
||||
|
||||
isObject([1, 2, 3]);
|
||||
//=> true
|
||||
|
||||
isObject('foo');
|
||||
//=> false
|
||||
```
|
||||
*/
|
||||
declare function isObject(value: unknown): value is object;
|
||||
|
||||
export = isObject;
|
||||
Loading…
Add table
Add a link
Reference in a new issue