版博士V2.0程序
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

14 wiersze
531 B

  1. const tokenize = require('./lib/tokenize')
  2. const constructTree = require('./lib/construct-tree')
  3. const StreamTokenizer = require('./lib/stream-tokenizer')
  4. const StreamTreeConstructor = require('./lib/stream-tree-constructor')
  5. // Need to be separate exports
  6. // in order to be properly bundled
  7. // and recognised by Rollup as named
  8. // exports
  9. module.exports.tokenize = tokenize
  10. module.exports.constructTree = constructTree
  11. module.exports.StreamTokenizer = StreamTokenizer
  12. module.exports.StreamTreeConstructor = StreamTreeConstructor