当我在 RunKit 中运行我的代码时,它会在控制台中输出“TypeError: mml2tex is not a function”。
这是代码的链接:https ://runkit.com/embed/4rnhdcgjrzwl
var mml2tex = require("mml2tex")
const mml = `
<math xmlns="http://www.w3.org/1998/Math/MathML">
<msqrt>
<mn>2</mn>
</msqrt>
</math>
`;
const tex = mml2tex(mml);
console.log(tex);
我该如何解决?