Commit node_modules

This commit is contained in:
Will Faught
2023-03-27 20:36:01 -07:00
parent 53a30a4c3e
commit 18ea53bb81
2693 changed files with 193960 additions and 70 deletions

17
paige/node_modules/katex/src/functions/relax.js generated vendored Normal file
View File

@@ -0,0 +1,17 @@
//@flow
import defineFunction from "../defineFunction";
defineFunction({
type: "internal",
names: ["\\relax"],
props: {
numArgs: 0,
allowedInText: true,
},
handler({parser}) {
return {
type: "internal",
mode: parser.mode,
};
},
});