TenantAtlas/apps/platform/.pnpm-store/v10/files/61/c2cc4ffcda174cece43c77548d2d32435a887f21e60deff7b13169906a2fa8eb8e61f5e186400516d8796dab4836396d1dc821235e511f5c172a6e433cae92
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

7 lines
161 B
Plaintext

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