Files
minecraft-plugin-manager/frontend/webapp/node_modules/es-abstract/helpers/isObject.js
2025-04-13 00:18:57 +02:00

6 lines
125 B
JavaScript

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