doum
7 天以前 47360d21048e9125315071670462e5d5bc09d273
1
2
3
4
5
6
'use strict';
 
/** @type {import('./isObject')} */
module.exports = function isObject(x) {
    return !!x && (typeof x === 'function' || typeof x === 'object');
};