Files
tautkan-kanban/server/node_modules/es-object-atoms/isObject.js
T
Power BI Dev 88c7c653c2 first init
2026-08-17 10:52:09 +07:00

7 lines
161 B
JavaScript

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