deinja

0.0.3 • Public • Published

deinja

Build Status Code Climate npm version

deinja is a JavaScript library which can convert Japanese words into original forms.

Since this library focuses on lightness and speed rather than accuracy, It doesn't have internal dictionary data. So it returns multiple candidates, not the sole converted 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

Readme

Keywords

Package Sidebar

Install

npm i deinja

Weekly Downloads

3

Version

0.0.3

License

Apache-2.0

Unpacked Size

112 kB

Total Files

31

Last publish

Collaborators

  • wtetsu