index.js 241 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
/* global window */
import ponyfill from './ponyfill';

var root = this;
if (typeof global !== 'undefined') {
	root = global;
} else if (typeof window !== 'undefined') {
	root = window;
}

var result = ponyfill(root);
export default result;