https://github.com/lamansky/italian-isc-verbs
A list of –ire verbs adhering to the –isc– conjugation.
https://github.com/lamansky/italian-isc-verbs
Last synced: 11 months ago
JSON representation
A list of –ire verbs adhering to the –isc– conjugation.
- Host: GitHub
- URL: https://github.com/lamansky/italian-isc-verbs
- Owner: lamansky
- License: mit
- Created: 2018-10-29T13:26:35.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-29T13:36:35.000Z (over 7 years ago)
- Last Synced: 2025-06-27T16:50:42.009Z (about 1 year ago)
- Language: JavaScript
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license.txt
Awesome Lists containing this project
README
# italian-isc-verbs
Some Italian verbs ending in –ire follow an alternate inflection pattern that uses the –isc– infix. This module aims to be a complete list of all such verbs. (If this list is missing a verb, please submit a pull request.)
## Installation
```bash
npm i italian-isc-verbs
```
## API
The module can be imported in three ways:
* `italian-isc-verbs/always`: Exports an array of stems of verbs that _always_ adhere to the –isc– conjugation.
* `italian-isc-verbs/sometimes`: Exports an array of stems of verbs that have two possible conjugations: the –isc– conjugation and the standard –ire conjugation.
* `italian-isc-verbs`: Exports an array which combines both of the above lists.
These lists contain the verb stems only. To get the infinitive forms, add the –ire suffix to each stem.
## Example
```javascript
const iscVerbs = require('italian-isc-verbs')
Array.isArray(iscVerbs) // true
iscVerbs.length // 494
iscVerbs[0] // abbell
iscVerbs[0] + 'ire' // abbellire
```