Recognize the different Japanese scripts and convert between hiragana/katakana.
Not published yet.
https://docs.rs/japanese
There are two primary modules you'll be using from this crate:
```rs use japanese::charset;
charset::isjapanese('あ') // -> true charset::isjapanesepunctuation('。') // -> true charset::iskatakana_string("あまり") // -> true // ... ```
```rs use japanese::converter;
converter::converthiraganatokatakanastring("もん") // -> モン converter::convertkatakanatohiraganastring("キョービ") // -> きょうび ```