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 335B

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