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
/
NodeCommonJSImportSpec.cjs
9 lines
(7 loc)
•
200 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
"use strict"
;
const
antlr4 =
require
(
"antlr4"
);
describe
(
'Antlr4 Node CommonJs'
,
() =>
{
it
(
'should use the CommonJS module on Node.js'
,
() =>
{
expect
(antlr4).
toBeDefined
(); }); });