mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-13 02:20:18 +00:00
11 lines
153 B
JavaScript
11 lines
153 B
JavaScript
|
window.module = {
|
||
|
exports: {},
|
||
|
};
|
||
|
|
||
|
const hack = new Proxy({}, {
|
||
|
get() {
|
||
|
return [];
|
||
|
},
|
||
|
});
|
||
|
window.require = () => ({'encoding-indexes': hack});
|