You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.js 392B

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