source: trip-planner-front/node_modules/symbol-observable/es/index.js@ 6c1585f

Last change on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 403 bytes
Line 
1/* global window */
2import ponyfill from './ponyfill.js';
3
4var root;
5
6if (typeof self !== 'undefined') {
7 root = self;
8} else if (typeof window !== 'undefined') {
9 root = window;
10} else if (typeof global !== 'undefined') {
11 root = global;
12} else if (typeof module !== 'undefined') {
13 root = module;
14} else {
15 root = Function('return this')();
16}
17
18var result = ponyfill(root);
19export default result;
Note: See TracBrowser for help on using the repository browser.