management/front/dkha-web-sz-main/node_modules/is-obj/index.js

7 lines
144 B
JavaScript
Raw Normal View History

2023-12-18 13:12:25 +08:00
'use strict';
2024-01-16 21:26:16 +08:00
module.exports = value => {
const type = typeof value;
return value !== null && (type === 'object' || type === 'function');
2023-12-18 13:12:25 +08:00
};