7 lines
119 B
JavaScript
7 lines
119 B
JavaScript
|
// token.mjs
|
||
|
export const token = {
|
||
|
startTag: 'startTag',
|
||
|
endTag: 'endTag',
|
||
|
text: 'text',
|
||
|
eof: 'eof'
|
||
|
};
|