source: trip-planner-front/node_modules/symbol-observable/lib/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: 664 bytes
Line 
1'use strict';
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6
7var _ponyfill = require('./ponyfill.js');
8
9var _ponyfill2 = _interopRequireDefault(_ponyfill);
10
11function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
12
13var root; /* global window */
14
15
16if (typeof self !== 'undefined') {
17 root = self;
18} else if (typeof window !== 'undefined') {
19 root = window;
20} else if (typeof global !== 'undefined') {
21 root = global;
22} else if (typeof module !== 'undefined') {
23 root = module;
24} else {
25 root = Function('return this')();
26}
27
28var result = (0, _ponyfill2['default'])(root);
29exports['default'] = result;
Note: See TracBrowser for help on using the repository browser.