https://github.com/stscoundrel/karelian-alphabet
Karelian language alphabet constants for JS.
https://github.com/stscoundrel/karelian-alphabet
alphabet javascript karelian-language nodejs
Last synced: 7 months ago
JSON representation
Karelian language alphabet constants for JS.
- Host: GitHub
- URL: https://github.com/stscoundrel/karelian-alphabet
- Owner: stscoundrel
- License: mit
- Created: 2020-09-16T18:05:02.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-10-09T19:29:48.000Z (about 5 years ago)
- Last Synced: 2025-03-25T07:38:21.809Z (7 months ago)
- Topics: alphabet, javascript, karelian-language, nodejs
- Language: JavaScript
- Homepage:
- Size: 75.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Karelian Alphabet
Karelian language alphabet alphabet constants for JS.
### Motivation
Karelian alphabet is combination of Finnic and Slavic characteristics. Letters included may either be hard to type on some keyboards, or simply hard to remember. This is simple project to just get the whole list as array whenever iteration is needed.
### Install
`yarn add karelian-alphabet`
### Usage
Current Karelian alphabet (2007 –):
```javascript
const {
ALPHABET,
LOWER_CASE,
UPPER_CASE,
} = require('karelian-alphabet')console.log(LOWER_CASE)
// ['a', 'b', 'c', 'č', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'r', 's', 'š', 'z', 'ž', 't', 'u', 'v', 'y', 'ä', 'ö']console.log(UPPER_CASE)
// ['A', 'B', 'C', 'Č', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'R', 'S', 'Š', 'Z', 'Ž', 'T', 'U', 'V', 'Y', 'Ä', 'Ö']console.log(ALPHABET) // combined upper & lower case.
```
Olonets Karelian alphabet (1989 – 2007):
```javascript
const {
OLONETS_ALPHABET,
OLONETS_LOWER_CASE,
OLONETS_UPPER_CASE,
} = require('karelian-alphabet')console.log(OLONETS_LOWER_CASE)
// ['a', 'b', 'č', 'd', 'ǯ', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'r', 's', 'š', 'z', 'ž', 't', 'u', 'v', 'ü', 'ä', 'ö']console.log(OLONETS_UPPER_CASE)
// ['A', 'B', 'Č', 'D', 'Ǯ', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'R', 'S', 'Š', 'Z', 'Ž', 'T', 'U', 'V', 'Ü', 'Ä', 'Ö']console.log(OLONETS_ALPHABET) // combined upper & lower case.
```
### About Karelian language.
[Karelian](https://en.wikipedia.org/wiki/Karelian_language) is a Finnic language, not to be confused with Karelian dialects of the Finnish language. It is close relative of Finnish language and they share high degree of mutual intelligibility.