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

getCallback.js 203B

12345678
  1. export default function getCallback() {
  2. if (
  3. arguments.length &&
  4. typeof arguments[arguments.length - 1] === 'function'
  5. ) {
  6. return arguments[arguments.length - 1];
  7. }
  8. }