@goongmaps/goong-map-react
Version:
A fork of react-map-gl. React components for Goong JS
8 lines (5 loc) • 307 B
JavaScript
/* global window, global, document */
const window_ = typeof window !== 'undefined' ? window : global;
const global_ = typeof global !== 'undefined' ? global : window;
const document_ = typeof document !== 'undefined' ? document : {};
export {window_ as window, global_ as global, document_ as document};