@dmitrysoshnikov/lex-js
Version:
Lexer generator from RegExp spec
18 lines (15 loc) • 304 B
JavaScript
/**
* The MIT License (MIT)
* Copyright (C) 2020-present Dmitry Soshnikov <dmitry.soshnikov@gmail.com>
*/
const Tokenizer = require('./src/Tokenizer');
/**
* Public API of lex-js.
*/
module.export = {
/**
* Tokenizer module. Creates custom lexers
* from RegExp spec.
*/
Tokenizer,
};