mirror of
https://github.com/rjNemo/federation
synced 2026-06-09 11:36:39 +00:00
3 lines
110 B
JavaScript
3 lines
110 B
JavaScript
module.exports = function (it) {
|
|
return typeof it === 'object' ? it !== null : typeof it === 'function';
|
|
};
|