Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

index.js 137B

12345
  1. 'use strict';
  2. module.exports = function (x) {
  3. var type = typeof x;
  4. return x !== null && (type === 'object' || type === 'function');
  5. };