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