UNPKG
@tendermint/belt
Version:
latest (0.3.0)
0.3.0
0.2.3
0.2.2
0.2.1
0.1.0
A utility belt for TypeScript + JavaScript
github.com/cosmos/belt
cosmos/belt
@tendermint/belt
/
types
/
src
/
isObject.d.ts
9 lines
(8 loc)
•
212 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
/** * Check if a value is a plain object. * *
@param
value
- value to check * *
@returns
`true` if the value is a plain object, `false` otherwise */
export
declare
function
isObject
(
value
:
any
):
boolean
;