Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jcuenod/ccat-parse

Takes CCAT morph codes and turns them into something meaningful
https://github.com/jcuenod/ccat-parse

Last synced: about 1 month ago
JSON representation

Takes CCAT morph codes and turns them into something meaningful

Awesome Lists containing this project

README

        

# ccat-parse

Takes CCAT morph codes and turns them into something meaningful. (cf. https://github.com/jcuenod/lxxproject). Now available as an npm package:

## Usage

```javascript
const { ccatParse } = require('ccat-parse')
ccatParse("VAI AAI3P")

//output:
{ part_of_speech: 'verb',
tense: 'aor',
voice: 'act',
mood: 'ind',
person: '3',
number: 'pl' }
```