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

keys.js 202B

123456789
  1. exports = module.exports = typeof Object.keys === 'function'
  2. ? Object.keys : shim;
  3. exports.shim = shim;
  4. function shim (obj) {
  5. var keys = [];
  6. for (var key in obj) keys.push(key);
  7. return keys;
  8. }