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

isPrimitive.js 136B

123
  1. module.exports = function isPrimitive(value) {
  2. return value === null || (typeof value !== 'function' && typeof value !== 'object');
  3. };