function isDef(value) { return value !== undefined && value !== null; } function isObj(x) { const type = typeof x; return x !== null && (type === 'object' || type === 'function'); } module.exports = { isObj, isDef };