index.js 241 B

123456789101112
  1. /* global window */
  2. import ponyfill from './ponyfill';
  3. var root = this;
  4. if (typeof global !== 'undefined') {
  5. root = global;
  6. } else if (typeof window !== 'undefined') {
  7. root = window;
  8. }
  9. var result = ponyfill(root);
  10. export default result;