mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-12 17:52:31 +00:00
Move all polyfills to a standalone feature, which gets imported before anything else in the mobile entrypoint. This guarantees that any further import sees the polyfilled environment.
9 lines
202 B
JavaScript
9 lines
202 B
JavaScript
(global => {
|
|
|
|
// __filename
|
|
if (typeof global.__filename === 'undefined') {
|
|
global.__filename = '__filename';
|
|
}
|
|
|
|
})(global || window || this); // eslint-disable-line no-invalid-this
|