Files
wl_student_system/vue/node_modules/es-object-atoms/isObject.js
T

7 lines
161 B
JavaScript
Raw Normal View History

2026-09-21 17:34:06 +08:00
'use strict';
/** @type {import('./isObject')} */
module.exports = function isObject(x) {
return !!x && (typeof x === 'function' || typeof x === 'object');
};