Simple email application for Android. Original source code: https://framagit.org/dystopia-project/simple-email
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.

19 lines
403 B

  1. /* global window */
  2. import ponyfill from './ponyfill.js';
  3. var root;
  4. if (typeof self !== 'undefined') {
  5. root = self;
  6. } else if (typeof window !== 'undefined') {
  7. root = window;
  8. } else if (typeof global !== 'undefined') {
  9. root = global;
  10. } else if (typeof module !== 'undefined') {
  11. root = module;
  12. } else {
  13. root = Function('return this')();
  14. }
  15. var result = ponyfill(root);
  16. export default result;