mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-10 08:10: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});
|