Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
da1nerd committed Aug 24, 2021
1 parent 4ef5447 commit 87a7e91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tokenizers.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export const tokenize = ({
number: greedyNumber,
};
const _parsers = greedy ? greedyParsers : parsers;
delete _parsers['greedyWord'];
delete _parsers.greedyWord;
let tokens = classifyTokens(string, _parsers, 'unknown');
const types = [];
if (includeWords) types.push('word');
Expand Down

0 comments on commit 87a7e91

Please sign in to comment.