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

index.js 389B

123456789101112131415161718
  1. 'use strict';
  2. var bind = require('function-bind');
  3. var define = require('define-properties');
  4. var implementation = require('./implementation');
  5. var getPolyfill = require('./polyfill');
  6. var shim = require('./shim');
  7. var bound = bind.call(Function.call, getPolyfill());
  8. define(bound, {
  9. getPolyfill: getPolyfill,
  10. implementation: implementation,
  11. shim: shim
  12. });
  13. module.exports = bound;