Skip to content
小李大人的笔记文档
Main Navigation
首页
笔记
工具库
项目导航
Appearance
Menu
Return to top
On this page
工具函数库 Utils
判断对象
js
export
function
isObject
(
val
) {
return
val
!==
null
&&
typeof
val
===
'object'
}