You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- const tokenize = require('./lib/tokenize')
- const constructTree = require('./lib/construct-tree')
- const StreamTokenizer = require('./lib/stream-tokenizer')
- const StreamTreeConstructor = require('./lib/stream-tree-constructor')
-
- // Need to be separate exports
- // in order to be properly bundled
- // and recognised by Rollup as named
- // exports
- module.exports.tokenize = tokenize
- module.exports.constructTree = constructTree
- module.exports.StreamTokenizer = StreamTokenizer
- module.exports.StreamTreeConstructor = StreamTreeConstructor
|