analyze-desumasu-dearu
文の敬体(ですます調)、常体(である調)を解析するライブラリ
Installation
npm install analyze-desumasu-dearu
Usage
import {analyzeDesumasu, analyzeDearu} from "analyze-desumasu-dearu";
let text = "昨日はいい天気であったのだが、今日は悪天候である。";
let ret = analyzeDearu(text);
analyzeDesumasu(text);
analyzeDesumasu(text) /analyzeDearu(text) : object[]
text
に含まれる文の敬体(ですます調) / 常体(である調)を解析して以下の配列を返します
Analyze text
and return following array of object.
[{
value: string,
lineNumber: number,
columnIndex: number
}]
FAQ
Q. Why is lineNumber
1-indexed?
A. This is for compatibility with JavaScript AST.
Tests
npm test
Contributing
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D
License
MIT
Acknowledge
Thank for RedPen.