index.js 355 B

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