Skip to content

wtetsu/deinja

Repository files navigation

logo
Build Status Code Climate npm version npm version

deinja

deinja is a JavaScript library that converts Japanese words into the original forms.

Since this library focuses on lightness and speed rather than accuracy, it doesn't have internal dictionary data. Therefore, it returns multiple candidates, not the sole word.

This library was once a part of Mouse Dictionary. It was detached from the application as a form of a portable library.

Install

npm i deinja

How to use

import deinja from "deinja";

deinja.convert("素早く"); // ["素早い"]
deinja.convert("転がし"); // ["転がす"]
deinja.convert("投げた"); // ["投げる", "投ぐ"]

deinja.convert("死にました"); // ["死ぬ"]
deinja.convert("終わって"); // ["終わう", "終わつ", "終わる"]
deinja.convert("しまった"); // ["しまう", "しまつ", "しまる"]

License

Apache 2.0

deinja is implemented based on deinflector which is written in Java.

https://github.com/Jimeux/deinflector