File "isObject.js"
Full Path: C:/wamp64/www/Seleccion/node_modules/dunder-proto/isObject.js
File size: 161 bytes
MIME-type: text/plain
Charset: utf-8
'use strict';
/** @type {import('./isObject')} */
module.exports = function isObject(x) {
return !!x && (typeof x === 'function' || typeof x === 'object');
};