mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-03-04 07:18:50 -07:00
Fix bug
This commit is contained in:
parent
77bccad644
commit
1c6ad232a6
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ const mecab = new MeCab();
|
|||
if (config.analysis.mecab_command) mecab.command = config.analysis.mecab_command;
|
||||
|
||||
function tokenize(text: string) {
|
||||
const tokens = this.mecab.parseSync(text)
|
||||
const tokens = mecab.parseSync(text)
|
||||
// キーワードのみ
|
||||
.filter(token => token[1] == '名詞' && (token[2] == '固有名詞' || token[2] == '一般'))
|
||||
// 取り出し
|
||||
|
|
Loading…
Add table
Reference in a new issue