UNPKG
latex-parser
Version:
latest (0.6.2)
0.6.2
0.6.1
0.6.0
0.5.1
0.5.0
0.3.6
0.3.5
0.3.4
0.3.3
0.3.2
0.2.1
0.2.0
0.1.7
0.1.6
0.1.5
0.1.4
LaTeX parser
github.com/digitalheir/latex-parser
digitalheir/latex-parser
latex-parser
/
deprecated-
/
lib
/
Latex
/
Directive
/
GROUP.ts
10 lines
(9 loc)
•
199 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
/** * Group operand for directives * @const {string} */
export
const
GROUP =
"GROUP"
;
export
type GROUP =
"GROUP"
;
export
function
isGROUP
(x: any)
: x is GROUP {
return
x === GROUP; }