Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
yuntian-deng
/
latex2im
like
22
Running
on
T4
App
Files
Files
Community
1
1d42781
latex2im
/
katex
/
src
/
parseData.js
da03
.
b498cbf
4 months ago
raw
Copy download link
history
blame
Safe
221 Bytes
/**
* The resulting parse tree nodes of the parse tree.
*/
function
ParseNode
(
type, value, mode
) {
this
.
type
= type;
this
.
value
= value;
this
.
mode
= mode;
}
module
.
exports
= {
ParseNode
:
ParseNode
,
};