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

index.cjs.js 298B

1234567891011121314
  1. 'use strict';
  2. /*!
  3. * isobject <https://github.com/jonschlinkert/isobject>
  4. *
  5. * Copyright (c) 2014-2017, Jon Schlinkert.
  6. * Released under the MIT License.
  7. */
  8. function isObject(val) {
  9. return val != null && typeof val === 'object' && Array.isArray(val) === false;
  10. }
  11. module.exports = isObject;