mirror of
https://github.com/visgl/luma.gl.git
synced 2025-12-08 17:36:19 +00:00
8 lines
234 B
JavaScript
8 lines
234 B
JavaScript
/* global window, global */
|
|
const moduleExports = require('./src');
|
|
|
|
const _global = typeof window === 'undefined' ? global : window;
|
|
_global.loaders = _global.luma || {};
|
|
|
|
module.exports = Object.assign(_global.luma, moduleExports);
|