2018-09-28 16:43:39 +08:00

10 lines
212 B
JavaScript

function isDef(value) {
return value !== undefined && value !== null;
}
function isObj(x) {
var type = typeof x;
return x !== null && (type === 'object' || type === 'function');
}
export { isObj, isDef };