UNPKG
antlr4-runtime
Version:
latest (4.13.0)
4.13.0
JavaScript runtime for ANTLR4
github.com/antlr/antlr4
antlr/antlr4
antlr4-runtime
/
spec
/
imports
/
NodeEsmImportSpec.mjs
9 lines
(7 loc)
•
186 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
import
*
as
antlr4
from
'antlr4'
describe
(
'Antlr4 Node Esm'
,
() =>
{
it
(
'should use the Esm module on Node.js'
,
() =>
{
expect
(antlr4).
toBeDefined
(); }); });
export
{};