Lexical analysis of New Testament Koine Greek
npm install koine-lexer



This library is published in the NPM registry and can be installed using any compatible package manager.
``sh
npm install koine-lexer --save
$3
This module has an UMD bundle available through JSDelivr and Unpkg CDNs.
`html
`Usage
$3
`javascript
import syllabify from 'koine-lexer/lib/syllabify'
const syllables = syllabify('ἀκηκόαμεν');
``json
["ἀ","κη","κό","α","μεν"]
`$3
`javascript
import accentuation from 'koine-lexer/lib/accentuation'
const accentedVerb = accentuation.accentuateVerb('ἀκηκοαμεν');
``json
"ἀκηκόαμεν"
`$3
`javascript
import amalgamate from 'koine-lexer/lib/amalgamate'
const amalgamatedVerb = amalgamate('πέμπσω');
``json
"πέμψω"
``Released under MIT License.