UNPKG
@clynn-fe/akfe-editor-stringify-object
Version:
latest (2.2.6)
2.2.6
2.2.5
stringify runtime js object
@clynn-fe/akfe-editor-stringify-object
/
lib
/
utils.ts
7 lines
(6 loc)
•
190 B
text/typescript
View Raw
1
2
3
4
5
6
7
export
const
isObj = (
value
:
unknown
): value is
Record
<
string
|
symbol
,
unknown
> => {
const
type
=
typeof
value
return
value !==
null
&& (
type
===
'object'
||
type
===
'function'
) }