UNPKG
val-path-helper
Version:
latest (0.0.1)
0.0.1
val path helper
val-path-helper
/
src
/
utils.ts
3 lines
•
122 B
text/typescript
View Raw
1
2
3
export
const
isObj = (
val
: any):
val
is
Object => {
return
Object.prototype.toString.call(
val
) ===
'[object Object]'
}