mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-06-13 18:35:04 +08:00
4 lines
110 B
JavaScript
4 lines
110 B
JavaScript
module.exports = function (it) {
|
|
return typeof it === 'object' ? it !== null : typeof it === 'function';
|
|
};
|