UNPKG
jointjs
Version:
alpha (4.0.0-alpha.4)
beta (3.6.0-beta.2)
latest (3.7.7)
4.0.0-alpha.4
4.0.0-alpha.3
4.0.0-alpha.2
4.0.0-alpha.1
3.7.7
3.7.6
3.7.5
3.7.4
3.7.3
3.7.2
3.7.1
3.7.0
3.6.5
3.6.4
3.6.3
3.6.2
3.6.1
3.6.0
3.6.0-beta.2
3.6.0-beta.1
3.6.0-beta.0
3.5.5
3.5.4
3.5.3
3.5.2
3.5.1
3.5.0
3.4.4
3.4.3
3.4.2
3.4.1
3.4.0
3.3.1
3.3.0
3.2.0
3.1.1
3.1.0
3.0.4
3.0.3
3.0.2
3.0.1
3.0.0
2.2.1
2.2.0
2.1.4
2.1.3
2.1.2
2.1.1
2.1.0
2.0.1
2.0.0
1.1.0
1.0.3
1.0.2
1.0.1
0.9.10
0.9.9
0.9.7
0.9.5
0.9.4
0.8.0
0.7.0
JavaScript diagramming library
jointjs.com
clientIO/joint
jointjs
/
demo
/
ts-demo
/
node_modules
/
@webassemblyjs
/
wast-parser
/
esm
/
index.js
9 lines
(8 loc)
•
282 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
import
*
as
parser
from
"./grammar"
;
import
{ tokenize }
from
"./tokenizer"
;
export
function
parse
(
source
) {
var
tokens =
tokenize
(source);
// We pass the source here to show code frames
var
ast = parser.
parse
(tokens, source);
return
ast; }
export
*
from
"./number-literals"
;