anki/ts/protobuf-shim.js
Damien Elmes a581c082f6 switch from rollup to esbuild
brings the 2+ second bundle on a module like the graphs down to 90ms
2021-03-21 16:06:36 +10:00

5 lines
145 B
JavaScript

window.require = (name) => {
if (name === "protobufjs/light") return window.protobuf;
else throw new Error(`Cannot require ${name}`);
};