tech4biz/chat_server/node_modules/is-obj/index.js
2024-10-24 17:20:08 +05:30

7 lines
144 B
JavaScript

'use strict';
module.exports = value => {
const type = typeof value;
return value !== null && (type === 'object' || type === 'function');
};