sms-gateway/node_modules/es-object-atoms/isObject.js
2026-03-04 19:30:01 +01:00

6 lines
161 B
JavaScript

'use strict';
/** @type {import('./isObject')} */
module.exports = function isObject(x) {
return !!x && (typeof x === 'function' || typeof x === 'object');
};