Comparing version 1.5.1 to 1.5.2
{ | ||
"name": "tokenizr", | ||
"version": "1.5.1", | ||
"version": "1.5.2", | ||
"description": "String Tokenization Library for JavaScript", | ||
@@ -5,0 +5,0 @@ "keywords": [ "string", "token", "scanner", "lexer" ], |
@@ -446,2 +446,22 @@ | ||
Alternatives | ||
------------ | ||
The following alternatives are known: | ||
- [moo](https://github.com/no-context/moo): | ||
A very powerful tokenizer/lexer. It provides nearly the same | ||
functionality than Tokenizr. In addition, it compiles all regular | ||
expressions into a single one and hence is one of the fastest | ||
tokenizers/lexers. | ||
- [flex-js](https://github.com/sormy/flex-js) | ||
A medium powerful tokenizer/lexer. It provides nearly the same | ||
functionality than Tokenizr. | ||
- [lex](https://github.com/aaditmshah/lexer): | ||
A tokenizer/lexer, modeled after the popular C solution Flex. This | ||
small library is similar in spirit, but not as flexible as it does not | ||
provide state supports. | ||
License | ||
@@ -448,0 +468,0 @@ ------- |
76477
490