forked from enviPath/enviPy
Current Dev State
This commit is contained in:
19
static/js/ketcher2/node_modules/symbol-observable/es/index.js
generated
vendored
Normal file
19
static/js/ketcher2/node_modules/symbol-observable/es/index.js
generated
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
/* global window */
|
||||
import ponyfill from './ponyfill';
|
||||
|
||||
var root;
|
||||
|
||||
if (typeof self !== 'undefined') {
|
||||
root = self;
|
||||
} else if (typeof window !== 'undefined') {
|
||||
root = window;
|
||||
} else if (typeof global !== 'undefined') {
|
||||
root = global;
|
||||
} else if (typeof module !== 'undefined') {
|
||||
root = module;
|
||||
} else {
|
||||
root = Function('return this')();
|
||||
}
|
||||
|
||||
var result = ponyfill(root);
|
||||
export default result;
|
||||
Reference in New Issue
Block a user