on-codemerge
Version:
A WYSIWYG editor for on-codemerge is a user-friendly interface that allows users to edit and view their code in real time, exactly as it will appear in the final product
17 lines (16 loc) • 466 B
JavaScript
const l = (r, n, t) => {
const e = r[n];
return e ? typeof e == "function" ? e() : Promise.resolve(e) : new Promise((i, o) => {
(typeof queueMicrotask == "function" ? queueMicrotask : setTimeout)(
o.bind(
null,
new Error(
"Unknown variable dynamic import: " + n + (n.split("/").length !== t ? ". Note that variables only represent file names one level deep." : "")
)
)
);
});
};
export {
l as default
};