mirror of
https://github.com/garraflavatra/alphabets.git
synced 2025-04-20 03:01:02 +00:00
Compare commits
No commits in common. "main" and "1.1.0" have entirely different histories.
11
.github/dependabot.yml
vendored
Normal file
11
.github/dependabot.yml
vendored
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
# To get started with Dependabot version updates, you'll need to specify which
|
||||||
|
# package ecosystems to update and where the package manifests are located.
|
||||||
|
# Please see the documentation for all configuration options:
|
||||||
|
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
||||||
|
|
||||||
|
version: 2
|
||||||
|
updates:
|
||||||
|
- package-ecosystem: "npm" # See documentation for possible values
|
||||||
|
directory: "/" # Location of package manifests
|
||||||
|
schedule:
|
||||||
|
interval: "daily"
|
30
.github/workflows/test.yml
vendored
Normal file
30
.github/workflows/test.yml
vendored
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
|
||||||
|
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
|
||||||
|
|
||||||
|
name: CI
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ main ]
|
||||||
|
pull_request:
|
||||||
|
branches: [ main ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
node-version: [10.x, 12.x, 14.x, 15.x]
|
||||||
|
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Use Node.js ${{ matrix.node-version }}
|
||||||
|
uses: actions/setup-node@v2
|
||||||
|
with:
|
||||||
|
node-version: ${{ matrix.node-version }}
|
||||||
|
- run: npm ci
|
||||||
|
- run: npm run build --if-present
|
||||||
|
- run: npm test
|
1
.husky/.gitignore
vendored
Normal file
1
.husky/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
_
|
5
.husky/pre-commit
Executable file
5
.husky/pre-commit
Executable file
@ -0,0 +1,5 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
. "$(dirname "$0")/_/husky.sh"
|
||||||
|
|
||||||
|
npm run build
|
||||||
|
npm test
|
3
.npmignore
Normal file
3
.npmignore
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
.DS_Store
|
||||||
|
.husky
|
||||||
|
node_modules
|
57
CHANGELOG.md
57
CHANGELOG.md
@ -1,57 +0,0 @@
|
|||||||
## [v2.0.5]
|
|
||||||
|
|
||||||
Added Polish alphabet, plus support for Deno!
|
|
||||||
|
|
||||||
## [v2.0.4]
|
|
||||||
|
|
||||||
Fixed the X-ray entry in the NATO alphabet.
|
|
||||||
|
|
||||||
## [v2.0.3]
|
|
||||||
|
|
||||||
Added the [NATO phonetic alphabet](https://en.wikipedia.org/wiki/NATO_phonetic_alphabet).
|
|
||||||
|
|
||||||
## [v2.0.2]
|
|
||||||
|
|
||||||
Fixed a double typo in package.json and package-lock.json (see 237fb6a).
|
|
||||||
|
|
||||||
## [v2.0.1]
|
|
||||||
|
|
||||||
Added Ukrainian alphabet.
|
|
||||||
|
|
||||||
## [v2.0.0]
|
|
||||||
|
|
||||||
Huge improvements...
|
|
||||||
|
|
||||||
## [v1.2.0]
|
|
||||||
|
|
||||||
Added Russian alphabet! It is exported as `russian`.
|
|
||||||
|
|
||||||
## [v1.1.0]
|
|
||||||
|
|
||||||
Added Scandinavian alphabets. This package now exports the following alphabets:
|
|
||||||
|
|
||||||
| Name | Export name |
|
|
||||||
|---------------------------|------------------|
|
|
||||||
| Danish | `danish` |
|
|
||||||
| Faroese | `faroese` |
|
|
||||||
| Greek (modern) | `greek` |
|
|
||||||
| Greek (ancient/polytonic) | `greekPolytonic` |
|
|
||||||
| Icelandic | `icelandic` |
|
|
||||||
| Latin | `latin` |
|
|
||||||
| Norwegian | `norwegian` |
|
|
||||||
| Swedish | `swedish` |
|
|
||||||
|
|
||||||
## [v1.0.0]
|
|
||||||
|
|
||||||
Initial release.
|
|
||||||
|
|
||||||
[Unreleased]: https://github.com/garraflavatra/alphabets/tree/main
|
|
||||||
[v1.0.0]: https://github.com/garraflavatra/alphabets/releases/tag/1.0.0
|
|
||||||
[v1.1.0]: https://github.com/garraflavatra/alphabets/releases/tag/1.1.0
|
|
||||||
[v1.2.0]: https://github.com/garraflavatra/alphabets/releases/tag/1.2.0
|
|
||||||
[v2.0.0]: https://github.com/garraflavatra/alphabets/releases/tag/v2.0.0
|
|
||||||
[v2.0.1]: https://github.com/garraflavatra/alphabets/releases/tag/v2.0.1
|
|
||||||
[v2.0.2]: https://github.com/garraflavatra/alphabets/releases/tag/v2.0.2
|
|
||||||
[v2.0.3]: https://github.com/garraflavatra/alphabets/releases/tag/v2.0.3
|
|
||||||
[v2.0.4]: https://github.com/garraflavatra/alphabets/releases/tag/v2.0.4
|
|
||||||
[v2.0.5]: https://github.com/garraflavatra/alphabets/releases/tag/v2.0.5
|
|
128
CODE_OF_CONDUCT.md
Normal file
128
CODE_OF_CONDUCT.md
Normal file
@ -0,0 +1,128 @@
|
|||||||
|
# Contributor Covenant Code of Conduct
|
||||||
|
|
||||||
|
## Our Pledge
|
||||||
|
|
||||||
|
We as members, contributors, and leaders pledge to make participation in our
|
||||||
|
community a harassment-free experience for everyone, regardless of age, body
|
||||||
|
size, visible or invisible disability, ethnicity, sex characteristics, gender
|
||||||
|
identity and expression, level of experience, education, socio-economic status,
|
||||||
|
nationality, personal appearance, race, religion, or sexual identity
|
||||||
|
and orientation.
|
||||||
|
|
||||||
|
We pledge to act and interact in ways that contribute to an open, welcoming,
|
||||||
|
diverse, inclusive, and healthy community.
|
||||||
|
|
||||||
|
## Our Standards
|
||||||
|
|
||||||
|
Examples of behavior that contributes to a positive environment for our
|
||||||
|
community include:
|
||||||
|
|
||||||
|
* Demonstrating empathy and kindness toward other people
|
||||||
|
* Being respectful of differing opinions, viewpoints, and experiences
|
||||||
|
* Giving and gracefully accepting constructive feedback
|
||||||
|
* Accepting responsibility and apologizing to those affected by our mistakes,
|
||||||
|
and learning from the experience
|
||||||
|
* Focusing on what is best not just for us as individuals, but for the
|
||||||
|
overall community
|
||||||
|
|
||||||
|
Examples of unacceptable behavior include:
|
||||||
|
|
||||||
|
* The use of sexualized language or imagery, and sexual attention or
|
||||||
|
advances of any kind
|
||||||
|
* Trolling, insulting or derogatory comments, and personal or political attacks
|
||||||
|
* Public or private harassment
|
||||||
|
* Publishing others' private information, such as a physical or email
|
||||||
|
address, without their explicit permission
|
||||||
|
* Other conduct which could reasonably be considered inappropriate in a
|
||||||
|
professional setting
|
||||||
|
|
||||||
|
## Enforcement Responsibilities
|
||||||
|
|
||||||
|
Community leaders are responsible for clarifying and enforcing our standards of
|
||||||
|
acceptable behavior and will take appropriate and fair corrective action in
|
||||||
|
response to any behavior that they deem inappropriate, threatening, offensive,
|
||||||
|
or harmful.
|
||||||
|
|
||||||
|
Community leaders have the right and responsibility to remove, edit, or reject
|
||||||
|
comments, commits, code, wiki edits, issues, and other contributions that are
|
||||||
|
not aligned to this Code of Conduct, and will communicate reasons for moderation
|
||||||
|
decisions when appropriate.
|
||||||
|
|
||||||
|
## Scope
|
||||||
|
|
||||||
|
This Code of Conduct applies within all community spaces, and also applies when
|
||||||
|
an individual is officially representing the community in public spaces.
|
||||||
|
Examples of representing our community include using an official e-mail address,
|
||||||
|
posting via an official social media account, or acting as an appointed
|
||||||
|
representative at an online or offline event.
|
||||||
|
|
||||||
|
## Enforcement
|
||||||
|
|
||||||
|
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
||||||
|
reported to the community leaders responsible for enforcement at
|
||||||
|
romein@vburen.eu.
|
||||||
|
All complaints will be reviewed and investigated promptly and fairly.
|
||||||
|
|
||||||
|
All community leaders are obligated to respect the privacy and security of the
|
||||||
|
reporter of any incident.
|
||||||
|
|
||||||
|
## Enforcement Guidelines
|
||||||
|
|
||||||
|
Community leaders will follow these Community Impact Guidelines in determining
|
||||||
|
the consequences for any action they deem in violation of this Code of Conduct:
|
||||||
|
|
||||||
|
### 1. Correction
|
||||||
|
|
||||||
|
**Community Impact**: Use of inappropriate language or other behavior deemed
|
||||||
|
unprofessional or unwelcome in the community.
|
||||||
|
|
||||||
|
**Consequence**: A private, written warning from community leaders, providing
|
||||||
|
clarity around the nature of the violation and an explanation of why the
|
||||||
|
behavior was inappropriate. A public apology may be requested.
|
||||||
|
|
||||||
|
### 2. Warning
|
||||||
|
|
||||||
|
**Community Impact**: A violation through a single incident or series
|
||||||
|
of actions.
|
||||||
|
|
||||||
|
**Consequence**: A warning with consequences for continued behavior. No
|
||||||
|
interaction with the people involved, including unsolicited interaction with
|
||||||
|
those enforcing the Code of Conduct, for a specified period of time. This
|
||||||
|
includes avoiding interactions in community spaces as well as external channels
|
||||||
|
like social media. Violating these terms may lead to a temporary or
|
||||||
|
permanent ban.
|
||||||
|
|
||||||
|
### 3. Temporary Ban
|
||||||
|
|
||||||
|
**Community Impact**: A serious violation of community standards, including
|
||||||
|
sustained inappropriate behavior.
|
||||||
|
|
||||||
|
**Consequence**: A temporary ban from any sort of interaction or public
|
||||||
|
communication with the community for a specified period of time. No public or
|
||||||
|
private interaction with the people involved, including unsolicited interaction
|
||||||
|
with those enforcing the Code of Conduct, is allowed during this period.
|
||||||
|
Violating these terms may lead to a permanent ban.
|
||||||
|
|
||||||
|
### 4. Permanent Ban
|
||||||
|
|
||||||
|
**Community Impact**: Demonstrating a pattern of violation of community
|
||||||
|
standards, including sustained inappropriate behavior, harassment of an
|
||||||
|
individual, or aggression toward or disparagement of classes of individuals.
|
||||||
|
|
||||||
|
**Consequence**: A permanent ban from any sort of public interaction within
|
||||||
|
the community.
|
||||||
|
|
||||||
|
## Attribution
|
||||||
|
|
||||||
|
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
||||||
|
version 2.0, available at
|
||||||
|
https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
|
||||||
|
|
||||||
|
Community Impact Guidelines were inspired by [Mozilla's code of conduct
|
||||||
|
enforcement ladder](https://github.com/mozilla/diversity).
|
||||||
|
|
||||||
|
[homepage]: https://www.contributor-covenant.org
|
||||||
|
|
||||||
|
For answers to common questions about this code of conduct, see the FAQ at
|
||||||
|
https://www.contributor-covenant.org/faq. Translations are available at
|
||||||
|
https://www.contributor-covenant.org/translations.
|
35
LICENSE.md
35
LICENSE.md
@ -1,19 +1,22 @@
|
|||||||
Copyright (c) 2021-2024 Romein van Buren <<romein@vburen.nl>>
|
Copyright (c) 2020 Romein van Buren <romein@vburen.eu>
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
obtaining a copy of this software and associated documentation
|
||||||
in the Software without restriction, including without limitation the rights
|
files (the "Software"), to deal in the Software without
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
restriction, including without limitation the rights to use,
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
furnished to do so, subject to the following conditions:
|
copies of the Software, and to permit persons to whom the
|
||||||
|
Software is furnished to do so, subject to the following
|
||||||
|
conditions:
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in all
|
The above copyright notice and this permission notice shall be
|
||||||
copies or substantial portions of the Software.
|
included in all copies or substantial portions of the Software.
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||||
SOFTWARE.
|
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||||||
|
OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
139
README.md
139
README.md
@ -1,59 +1,67 @@
|
|||||||
# Alphabets
|
# Alphabets
|
||||||
|
|
||||||
Alphabets contains many different alphabets for many different use cases.
|
[](https://github.com/garraflavatra/alphabets/actions/workflows/test.yml)
|
||||||
|
|
||||||
[](https://www.npmjs.com/package/alphabets)
|
A tiny JS dependency (<2kb!) which exports many alphabets for many use
|
||||||
|
cases.
|
||||||
|
|
||||||
- [Included alphabets](#included-alphabets)
|
More information is available in the
|
||||||
- [How to use](#how-to-use)
|
[documentation](https://alphabets.romeinvanburen.nl).
|
||||||
- [JS module](#js-module)
|
|
||||||
- [JSON file](#json-file)
|
|
||||||
- [Motivation](#motivation)
|
|
||||||
- [Questions and bugs](#questions-and-bugs)
|
|
||||||
- [Copyright](#copyright)
|
|
||||||
|
|
||||||
## Included alphabets
|
## Why would I use this?
|
||||||
|
|
||||||
See below for [usage instructions](#how-to-use).
|
### Why?
|
||||||
|
|
||||||
| Export name | Alphabet |
|
I have seen developers doing this:
|
||||||
|------------------|------------------|
|
|
||||||
| `danish` | [Danish](https://en.wikipedia.org/wiki/Danish_orthography), same as Norwegian |
|
|
||||||
| `faroese` | [Faroese](https://en.wikipedia.org/wiki/Faroese_orthography) |
|
|
||||||
| `greek` | [Greek](https://en.wikipedia.org/wiki/Greek_alphabet) |
|
|
||||||
| `icelandic` | [Icelandic](https://en.wikipedia.org/wiki/Icelandic_orthography) |
|
|
||||||
| `latin` | [Latin](https://en.wikipedia.org/wiki/Latin_alphabet) (abcdefg etc.) |
|
|
||||||
| `nato` | [NATO phonetic alphabet](https://en.wikipedia.org/wiki/NATO_phonetic_alphabet) |
|
|
||||||
| `norwegian` | [Norwegian](https://en.wikipedia.org/wiki/Danish_and_Norwegian_alphabet), same as Danish |
|
|
||||||
| `polish` | [Polish](https://en.wikipedia.org/wiki/Polish_alphabet) |
|
|
||||||
| `russian` | [Russian](https://en.wikipedia.org/wiki/Russian_alphabet) |
|
|
||||||
| `swedish` | [Swedish](https://en.wikipedia.org/wiki/Swedish_alphabet) |
|
|
||||||
| `ukrainian` | [Ukrainian](https://en.wikipedia.org/wiki/Ukrainian_alphabet) |
|
|
||||||
|
|
||||||
## How to use
|
```js
|
||||||
|
const alphabet = 'abcdefghijklmnopqrstuvwxyz'.split('');
|
||||||
|
```
|
||||||
|
|
||||||
### JS module
|
Or worse:
|
||||||
|
|
||||||
Install the [alphabets npm module](https://www.npmjs.com/package/alphabets) using your preferred package manager:
|
```js
|
||||||
|
const alphabet = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"];
|
||||||
|
```
|
||||||
|
|
||||||
* npm: `npm install alphabets`
|
My opinion about this? 🙄. It's ugly, it makes your code less readable
|
||||||
* Yarn: `yarn add alphabets`
|
(read: ugly) and it's simply not something you should want to have in your
|
||||||
* pnpm: `pnpm add alphabets`
|
code! Instead, you should do it like so:
|
||||||
|
|
||||||
You can also use it with [Deno](https://deno.land/) by importing `https://deno.land/x/alphabets/alphabets.mjs`.
|
```js
|
||||||
|
import { latin } from 'alphabets';
|
||||||
|
// or
|
||||||
|
const alphabets = require('alphabets');
|
||||||
|
```
|
||||||
|
|
||||||
Replace `<alphabetYouWantToUse>` with an [alphabet identifier](#included-alphabets) this package exports:
|
Much cleaner, right? That's why I made this package.
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
Use npm:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
npm install alphabets --save
|
||||||
|
```
|
||||||
|
|
||||||
|
Or if you prefer Yarn:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
yarn add alphabets
|
||||||
|
```
|
||||||
|
|
||||||
|
CDN, if that's more your style:
|
||||||
|
|
||||||
|
```html
|
||||||
|
<script src="https://unpkg.com/alphabet@1/dist/bundle.js"></script>
|
||||||
|
```
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
```js
|
```js
|
||||||
import { <alphabetYouWantToUse> } from 'alphabets';
|
import { <alphabetYouWantToUse> } from 'alphabets';
|
||||||
```
|
```
|
||||||
|
|
||||||
Deno:
|
|
||||||
|
|
||||||
```js
|
|
||||||
import { <alphabetYouWantToUse> } from 'https://deno.land/x/alphabets/alphabets.mjs';
|
|
||||||
```
|
|
||||||
|
|
||||||
or:
|
or:
|
||||||
|
|
||||||
```js
|
```js
|
||||||
@ -61,47 +69,20 @@ const alphabets = require('alphabets');
|
|||||||
console.log(alphabets.<alphabetYouWantToUse>);
|
console.log(alphabets.<alphabetYouWantToUse>);
|
||||||
```
|
```
|
||||||
|
|
||||||
### JSON file
|
where `<alphabetYouWantToUse>` is an alphabet this package supports.
|
||||||
|
[Here](#supported-alphabets) is a list from which you can choose.
|
||||||
|
|
||||||
Or load the JSON file with alphabets directly from a CDN:
|
## Supported alphabets
|
||||||
|
|
||||||
* https://cdn.jsdelivr.net/npm/alphabets@2/alphabets.json
|
Usage: see [Usage](#usage).
|
||||||
* https://unpkg.com/alphabets@2/alphabets.json
|
|
||||||
|
|
||||||
## Motivation
|
| Name | Export name |
|
||||||
|
|------|-------------|
|
||||||
I have seen [code like this](https://github.com/search?q=%27abcdefghijklmnopqrstuvwxyz%27.split%28%27%27%29+language%3AJavaScript&type=code&l=JavaScript):
|
| Danish | `danish` |
|
||||||
|
| Faroese | `faroese` |
|
||||||
```js
|
| Greek (modern) | `greek` |
|
||||||
const alphabet = 'abcdefghijklmnopqrstuvwxyz'.split('');
|
| Greek (ancient/polytonic) | `greekPolytonic` |
|
||||||
```
|
| Icelandic | `icelandic` |
|
||||||
|
| Latin | `latin` |
|
||||||
Or [even worse](https://github.com/search?q=%5B%22a%22%2C+%22b%22%2C+%22c%22%2C+%22d%22%2C+%22e%22%2C+%22f%22%2C+%22g%22%2C+%22h%22%2C+%22i%22%2C+%22j%22%2C+%22k%22%2C+%22l%22%2C+%22m%22%2C+%22n%22%2C+%22o%22%2C+%22p%22%2C+%22q%22%2C+%22r%22%2C+%22s%22%2C+%22t%22%2C+%22u%22%2C+%22v%22%2C+%22w%22%2C+%22x%22%2C+%22y%22%2C+%22z%22%5D+language%3AJavaScript&type=code&l=JavaScript):
|
| Norwegian | `norwegian` |
|
||||||
|
| Swedish | `swedish` |
|
||||||
```js
|
|
||||||
const alphabet = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"];
|
|
||||||
```
|
|
||||||
|
|
||||||
My opinion about this: it's verbose, ugly, and it pollutes your code. Instead, why not [do it like this](#how-to-use):
|
|
||||||
|
|
||||||
```js
|
|
||||||
import { latin } from 'alphabets';
|
|
||||||
|
|
||||||
for (const glyph of latin) {/* ... */}
|
|
||||||
```
|
|
||||||
|
|
||||||
This is much cleaner and more idiomatic.
|
|
||||||
|
|
||||||
## Questions and bugs
|
|
||||||
|
|
||||||
Did you find a mistake in an alphabet, or another bug? Please [report it](https://github.com/garraflavatra/alphabets/issues/new) — thank you! I'll try to fix it as soon as possible.
|
|
||||||
|
|
||||||
You may use the same issue form for questions, too.
|
|
||||||
|
|
||||||
## Copyright
|
|
||||||
|
|
||||||
(c) 2021-2024 [Romein van Buren](mailto:romein@vburen.nl). Licensed under the MIT license.
|
|
||||||
|
|
||||||
For the full copyright and license information, please see the [`LICENSE.md`](./LICENSE.md) file that was distributed with this source code.
|
|
||||||
|
|
||||||
[](https://www.smartyellow.nl)
|
|
||||||
|
@ -1 +0,0 @@
|
|||||||
module.exports = require('./alphabets.json');
|
|
@ -1,27 +0,0 @@
|
|||||||
{
|
|
||||||
|
|
||||||
"danish": ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "æ", "ø", "å"],
|
|
||||||
|
|
||||||
"elfadian": ["a", "ą", "b", "d", "ð", "e", "ę", "f", "g", "h", "i", "į", "j", "k", "l", "m", "n", "o", "p", "r", "s", "t", "u", "ų", "v", "w", "y", "y̨", "å", "ą̊", "ä", "ö"],
|
|
||||||
|
|
||||||
"faroese": ["a", "á", "b", "d", "ð", "e", "f", "g", "h", "i", "í", "j", "k", "l", "m", "n", "o", "ó", "p", "r", "s", "t", "u", "ú", "v", "y", "ý", "æ", "ø"],
|
|
||||||
|
|
||||||
"greek": ["α", "β", "γ", "δ", "ε", "ζ", "η", "θ", "ι", "κ", "λ", "μ", "ν", "ξ", "ο", "π", "ρ", "σ", "τ", "υ", "φ", "χ", "ψ", "ω"],
|
|
||||||
|
|
||||||
"icelandic": ["a", "á", "b", "d", "ð", "e", "é", "f", "g", "h", "i", "í", "j", "k", "l", "m", "n", "o", "ó", "p", "r", "s", "t", "u", "ú", "v", "x", "y", "ý", "þ", "æ", "ö"],
|
|
||||||
|
|
||||||
"latin": ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"],
|
|
||||||
|
|
||||||
"nato": ["Alfa", "Bravo", "Charlie", "Delta", "Echo", "Foxtrot", "Golf", "Hotel", "India", "Juliett", "Kilo", "Lima", "Mike", "November", "Oscar", "Papa", "Quebec", "Romeo", "Sierra", "Tango", "Uniform", "Victor", "Whiskey", "X-ray", "Yankee", "Zulu"],
|
|
||||||
|
|
||||||
"norwegian": ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "æ", "ø", "å"],
|
|
||||||
|
|
||||||
"polish": ["a", "ą", "b", "c", "ć", "d", "e", "ę", "f", "g", "h", "i", "j", "k", "l", "ł", "m", "n", "ń", "o", "ó", "p", "q", "r", "s", "ś", "t", "u", "v", "w", "x", "y", "z", "ź", "ż"],
|
|
||||||
|
|
||||||
"russian": ["а", "б", "в", "г", "д", "е", "ё", "ж", "з", "и", "й", "к", "л", "м", "н", "о", "п", "р", "с", "т", "у", "ф", "х", "ц", "ч", "ш", "щ", "ъ", "ы", "ь", "э", "ю", "я"],
|
|
||||||
|
|
||||||
"swedish": ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "å", "ä", "ö"],
|
|
||||||
|
|
||||||
"ukrainian": ["а", "б", "в", "г", "ґ", "д", "е", "є", "ж", "з", "и", "і", "ї", "й", "к", "л", "м", "н", "о", "п", "р", "с", "т", "у", "ф", "х", "ц", "ч", "ш", "щ", "ь", "ю", "я"]
|
|
||||||
|
|
||||||
}
|
|
@ -1 +0,0 @@
|
|||||||
export * from './alphabets.json';
|
|
4
docs/.gitignore
vendored
Normal file
4
docs/.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
_site/
|
||||||
|
.sass-cache/
|
||||||
|
.jekyll-cache/
|
||||||
|
.jekyll-metadata
|
1
docs/CNAME
Normal file
1
docs/CNAME
Normal file
@ -0,0 +1 @@
|
|||||||
|
alphabets.romeinvanburen.nl
|
4
docs/Gemfile
Normal file
4
docs/Gemfile
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
source "https://rubygems.org"
|
||||||
|
|
||||||
|
gem "github-pages", group: :jekyll_plugins
|
||||||
|
gem "jekyll-include-cache", group: :jekyll_plugins
|
276
docs/Gemfile.lock
Normal file
276
docs/Gemfile.lock
Normal file
@ -0,0 +1,276 @@
|
|||||||
|
GEM
|
||||||
|
remote: https://rubygems.org/
|
||||||
|
specs:
|
||||||
|
activesupport (6.0.3.7)
|
||||||
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
||||||
|
i18n (>= 0.7, < 2)
|
||||||
|
minitest (~> 5.1)
|
||||||
|
tzinfo (~> 1.1)
|
||||||
|
zeitwerk (~> 2.2, >= 2.2.2)
|
||||||
|
addressable (2.7.0)
|
||||||
|
public_suffix (>= 2.0.2, < 5.0)
|
||||||
|
coffee-script (2.4.1)
|
||||||
|
coffee-script-source
|
||||||
|
execjs
|
||||||
|
coffee-script-source (1.11.1)
|
||||||
|
colorator (1.1.0)
|
||||||
|
commonmarker (0.17.13)
|
||||||
|
ruby-enum (~> 0.5)
|
||||||
|
concurrent-ruby (1.1.8)
|
||||||
|
dnsruby (1.61.5)
|
||||||
|
simpleidn (~> 0.1)
|
||||||
|
em-websocket (0.5.2)
|
||||||
|
eventmachine (>= 0.12.9)
|
||||||
|
http_parser.rb (~> 0.6.0)
|
||||||
|
ethon (0.14.0)
|
||||||
|
ffi (>= 1.15.0)
|
||||||
|
eventmachine (1.2.7)
|
||||||
|
execjs (2.8.1)
|
||||||
|
faraday (1.4.2)
|
||||||
|
faraday-em_http (~> 1.0)
|
||||||
|
faraday-em_synchrony (~> 1.0)
|
||||||
|
faraday-excon (~> 1.1)
|
||||||
|
faraday-net_http (~> 1.0)
|
||||||
|
faraday-net_http_persistent (~> 1.1)
|
||||||
|
multipart-post (>= 1.2, < 3)
|
||||||
|
ruby2_keywords (>= 0.0.4)
|
||||||
|
faraday-em_http (1.0.0)
|
||||||
|
faraday-em_synchrony (1.0.0)
|
||||||
|
faraday-excon (1.1.0)
|
||||||
|
faraday-net_http (1.0.1)
|
||||||
|
faraday-net_http_persistent (1.1.0)
|
||||||
|
ffi (1.15.1)
|
||||||
|
forwardable-extended (2.6.0)
|
||||||
|
gemoji (3.0.1)
|
||||||
|
github-pages (214)
|
||||||
|
github-pages-health-check (= 1.17.0)
|
||||||
|
jekyll (= 3.9.0)
|
||||||
|
jekyll-avatar (= 0.7.0)
|
||||||
|
jekyll-coffeescript (= 1.1.1)
|
||||||
|
jekyll-commonmark-ghpages (= 0.1.6)
|
||||||
|
jekyll-default-layout (= 0.1.4)
|
||||||
|
jekyll-feed (= 0.15.1)
|
||||||
|
jekyll-gist (= 1.5.0)
|
||||||
|
jekyll-github-metadata (= 2.13.0)
|
||||||
|
jekyll-mentions (= 1.6.0)
|
||||||
|
jekyll-optional-front-matter (= 0.3.2)
|
||||||
|
jekyll-paginate (= 1.1.0)
|
||||||
|
jekyll-readme-index (= 0.3.0)
|
||||||
|
jekyll-redirect-from (= 0.16.0)
|
||||||
|
jekyll-relative-links (= 0.6.1)
|
||||||
|
jekyll-remote-theme (= 0.4.3)
|
||||||
|
jekyll-sass-converter (= 1.5.2)
|
||||||
|
jekyll-seo-tag (= 2.7.1)
|
||||||
|
jekyll-sitemap (= 1.4.0)
|
||||||
|
jekyll-swiss (= 1.0.0)
|
||||||
|
jekyll-theme-architect (= 0.1.1)
|
||||||
|
jekyll-theme-cayman (= 0.1.1)
|
||||||
|
jekyll-theme-dinky (= 0.1.1)
|
||||||
|
jekyll-theme-hacker (= 0.1.2)
|
||||||
|
jekyll-theme-leap-day (= 0.1.1)
|
||||||
|
jekyll-theme-merlot (= 0.1.1)
|
||||||
|
jekyll-theme-midnight (= 0.1.1)
|
||||||
|
jekyll-theme-minimal (= 0.1.1)
|
||||||
|
jekyll-theme-modernist (= 0.1.1)
|
||||||
|
jekyll-theme-primer (= 0.5.4)
|
||||||
|
jekyll-theme-slate (= 0.1.1)
|
||||||
|
jekyll-theme-tactile (= 0.1.1)
|
||||||
|
jekyll-theme-time-machine (= 0.1.1)
|
||||||
|
jekyll-titles-from-headings (= 0.5.3)
|
||||||
|
jemoji (= 0.12.0)
|
||||||
|
kramdown (= 2.3.1)
|
||||||
|
kramdown-parser-gfm (= 1.1.0)
|
||||||
|
liquid (= 4.0.3)
|
||||||
|
mercenary (~> 0.3)
|
||||||
|
minima (= 2.5.1)
|
||||||
|
nokogiri (>= 1.10.4, < 2.0)
|
||||||
|
rouge (= 3.26.0)
|
||||||
|
terminal-table (~> 1.4)
|
||||||
|
github-pages-health-check (1.17.0)
|
||||||
|
addressable (~> 2.3)
|
||||||
|
dnsruby (~> 1.60)
|
||||||
|
octokit (~> 4.0)
|
||||||
|
public_suffix (>= 2.0.2, < 5.0)
|
||||||
|
typhoeus (~> 1.3)
|
||||||
|
html-pipeline (2.14.0)
|
||||||
|
activesupport (>= 2)
|
||||||
|
nokogiri (>= 1.4)
|
||||||
|
http_parser.rb (0.6.0)
|
||||||
|
i18n (0.9.5)
|
||||||
|
concurrent-ruby (~> 1.0)
|
||||||
|
jekyll (3.9.0)
|
||||||
|
addressable (~> 2.4)
|
||||||
|
colorator (~> 1.0)
|
||||||
|
em-websocket (~> 0.5)
|
||||||
|
i18n (~> 0.7)
|
||||||
|
jekyll-sass-converter (~> 1.0)
|
||||||
|
jekyll-watch (~> 2.0)
|
||||||
|
kramdown (>= 1.17, < 3)
|
||||||
|
liquid (~> 4.0)
|
||||||
|
mercenary (~> 0.3.3)
|
||||||
|
pathutil (~> 0.9)
|
||||||
|
rouge (>= 1.7, < 4)
|
||||||
|
safe_yaml (~> 1.0)
|
||||||
|
jekyll-avatar (0.7.0)
|
||||||
|
jekyll (>= 3.0, < 5.0)
|
||||||
|
jekyll-coffeescript (1.1.1)
|
||||||
|
coffee-script (~> 2.2)
|
||||||
|
coffee-script-source (~> 1.11.1)
|
||||||
|
jekyll-commonmark (1.3.1)
|
||||||
|
commonmarker (~> 0.14)
|
||||||
|
jekyll (>= 3.7, < 5.0)
|
||||||
|
jekyll-commonmark-ghpages (0.1.6)
|
||||||
|
commonmarker (~> 0.17.6)
|
||||||
|
jekyll-commonmark (~> 1.2)
|
||||||
|
rouge (>= 2.0, < 4.0)
|
||||||
|
jekyll-default-layout (0.1.4)
|
||||||
|
jekyll (~> 3.0)
|
||||||
|
jekyll-feed (0.15.1)
|
||||||
|
jekyll (>= 3.7, < 5.0)
|
||||||
|
jekyll-gist (1.5.0)
|
||||||
|
octokit (~> 4.2)
|
||||||
|
jekyll-github-metadata (2.13.0)
|
||||||
|
jekyll (>= 3.4, < 5.0)
|
||||||
|
octokit (~> 4.0, != 4.4.0)
|
||||||
|
jekyll-include-cache (0.2.1)
|
||||||
|
jekyll (>= 3.7, < 5.0)
|
||||||
|
jekyll-mentions (1.6.0)
|
||||||
|
html-pipeline (~> 2.3)
|
||||||
|
jekyll (>= 3.7, < 5.0)
|
||||||
|
jekyll-optional-front-matter (0.3.2)
|
||||||
|
jekyll (>= 3.0, < 5.0)
|
||||||
|
jekyll-paginate (1.1.0)
|
||||||
|
jekyll-readme-index (0.3.0)
|
||||||
|
jekyll (>= 3.0, < 5.0)
|
||||||
|
jekyll-redirect-from (0.16.0)
|
||||||
|
jekyll (>= 3.3, < 5.0)
|
||||||
|
jekyll-relative-links (0.6.1)
|
||||||
|
jekyll (>= 3.3, < 5.0)
|
||||||
|
jekyll-remote-theme (0.4.3)
|
||||||
|
addressable (~> 2.0)
|
||||||
|
jekyll (>= 3.5, < 5.0)
|
||||||
|
jekyll-sass-converter (>= 1.0, <= 3.0.0, != 2.0.0)
|
||||||
|
rubyzip (>= 1.3.0, < 3.0)
|
||||||
|
jekyll-sass-converter (1.5.2)
|
||||||
|
sass (~> 3.4)
|
||||||
|
jekyll-seo-tag (2.7.1)
|
||||||
|
jekyll (>= 3.8, < 5.0)
|
||||||
|
jekyll-sitemap (1.4.0)
|
||||||
|
jekyll (>= 3.7, < 5.0)
|
||||||
|
jekyll-swiss (1.0.0)
|
||||||
|
jekyll-theme-architect (0.1.1)
|
||||||
|
jekyll (~> 3.5)
|
||||||
|
jekyll-seo-tag (~> 2.0)
|
||||||
|
jekyll-theme-cayman (0.1.1)
|
||||||
|
jekyll (~> 3.5)
|
||||||
|
jekyll-seo-tag (~> 2.0)
|
||||||
|
jekyll-theme-dinky (0.1.1)
|
||||||
|
jekyll (~> 3.5)
|
||||||
|
jekyll-seo-tag (~> 2.0)
|
||||||
|
jekyll-theme-hacker (0.1.2)
|
||||||
|
jekyll (> 3.5, < 5.0)
|
||||||
|
jekyll-seo-tag (~> 2.0)
|
||||||
|
jekyll-theme-leap-day (0.1.1)
|
||||||
|
jekyll (~> 3.5)
|
||||||
|
jekyll-seo-tag (~> 2.0)
|
||||||
|
jekyll-theme-merlot (0.1.1)
|
||||||
|
jekyll (~> 3.5)
|
||||||
|
jekyll-seo-tag (~> 2.0)
|
||||||
|
jekyll-theme-midnight (0.1.1)
|
||||||
|
jekyll (~> 3.5)
|
||||||
|
jekyll-seo-tag (~> 2.0)
|
||||||
|
jekyll-theme-minimal (0.1.1)
|
||||||
|
jekyll (~> 3.5)
|
||||||
|
jekyll-seo-tag (~> 2.0)
|
||||||
|
jekyll-theme-modernist (0.1.1)
|
||||||
|
jekyll (~> 3.5)
|
||||||
|
jekyll-seo-tag (~> 2.0)
|
||||||
|
jekyll-theme-primer (0.5.4)
|
||||||
|
jekyll (> 3.5, < 5.0)
|
||||||
|
jekyll-github-metadata (~> 2.9)
|
||||||
|
jekyll-seo-tag (~> 2.0)
|
||||||
|
jekyll-theme-slate (0.1.1)
|
||||||
|
jekyll (~> 3.5)
|
||||||
|
jekyll-seo-tag (~> 2.0)
|
||||||
|
jekyll-theme-tactile (0.1.1)
|
||||||
|
jekyll (~> 3.5)
|
||||||
|
jekyll-seo-tag (~> 2.0)
|
||||||
|
jekyll-theme-time-machine (0.1.1)
|
||||||
|
jekyll (~> 3.5)
|
||||||
|
jekyll-seo-tag (~> 2.0)
|
||||||
|
jekyll-titles-from-headings (0.5.3)
|
||||||
|
jekyll (>= 3.3, < 5.0)
|
||||||
|
jekyll-watch (2.2.1)
|
||||||
|
listen (~> 3.0)
|
||||||
|
jemoji (0.12.0)
|
||||||
|
gemoji (~> 3.0)
|
||||||
|
html-pipeline (~> 2.2)
|
||||||
|
jekyll (>= 3.0, < 5.0)
|
||||||
|
kramdown (2.3.1)
|
||||||
|
rexml
|
||||||
|
kramdown-parser-gfm (1.1.0)
|
||||||
|
kramdown (~> 2.0)
|
||||||
|
liquid (4.0.3)
|
||||||
|
listen (3.5.1)
|
||||||
|
rb-fsevent (~> 0.10, >= 0.10.3)
|
||||||
|
rb-inotify (~> 0.9, >= 0.9.10)
|
||||||
|
mercenary (0.3.6)
|
||||||
|
minima (2.5.1)
|
||||||
|
jekyll (>= 3.5, < 5.0)
|
||||||
|
jekyll-feed (~> 0.9)
|
||||||
|
jekyll-seo-tag (~> 2.1)
|
||||||
|
minitest (5.14.4)
|
||||||
|
multipart-post (2.1.1)
|
||||||
|
nokogiri (1.11.5-arm64-darwin)
|
||||||
|
racc (~> 1.4)
|
||||||
|
nokogiri (1.11.5-x86_64-darwin)
|
||||||
|
racc (~> 1.4)
|
||||||
|
octokit (4.21.0)
|
||||||
|
faraday (>= 0.9)
|
||||||
|
sawyer (~> 0.8.0, >= 0.5.3)
|
||||||
|
pathutil (0.16.2)
|
||||||
|
forwardable-extended (~> 2.6)
|
||||||
|
public_suffix (4.0.6)
|
||||||
|
racc (1.5.2)
|
||||||
|
rb-fsevent (0.11.0)
|
||||||
|
rb-inotify (0.10.1)
|
||||||
|
ffi (~> 1.0)
|
||||||
|
rexml (3.2.5)
|
||||||
|
rouge (3.26.0)
|
||||||
|
ruby-enum (0.9.0)
|
||||||
|
i18n
|
||||||
|
ruby2_keywords (0.0.4)
|
||||||
|
rubyzip (2.3.0)
|
||||||
|
safe_yaml (1.0.5)
|
||||||
|
sass (3.7.4)
|
||||||
|
sass-listen (~> 4.0.0)
|
||||||
|
sass-listen (4.0.0)
|
||||||
|
rb-fsevent (~> 0.9, >= 0.9.4)
|
||||||
|
rb-inotify (~> 0.9, >= 0.9.7)
|
||||||
|
sawyer (0.8.2)
|
||||||
|
addressable (>= 2.3.5)
|
||||||
|
faraday (> 0.8, < 2.0)
|
||||||
|
simpleidn (0.2.1)
|
||||||
|
unf (~> 0.1.4)
|
||||||
|
terminal-table (1.8.0)
|
||||||
|
unicode-display_width (~> 1.1, >= 1.1.1)
|
||||||
|
thread_safe (0.3.6)
|
||||||
|
typhoeus (1.4.0)
|
||||||
|
ethon (>= 0.9.0)
|
||||||
|
tzinfo (1.2.9)
|
||||||
|
thread_safe (~> 0.1)
|
||||||
|
unf (0.1.4)
|
||||||
|
unf_ext
|
||||||
|
unf_ext (0.0.7.7)
|
||||||
|
unicode-display_width (1.7.0)
|
||||||
|
zeitwerk (2.4.2)
|
||||||
|
|
||||||
|
PLATFORMS
|
||||||
|
universal-darwin-20
|
||||||
|
|
||||||
|
DEPENDENCIES
|
||||||
|
github-pages
|
||||||
|
jekyll-include-cache
|
||||||
|
|
||||||
|
BUNDLED WITH
|
||||||
|
2.2.17
|
38
docs/_config.yml
Normal file
38
docs/_config.yml
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
remote_theme: "mmistakes/minimal-mistakes@4.9.0"
|
||||||
|
minimal_mistakes_skin: air
|
||||||
|
repository: garraflavatra/alphabets
|
||||||
|
|
||||||
|
title: Alphabets
|
||||||
|
description: A tiny JS dependency (<800 bytes!) which exports many alphabets for many use cases.
|
||||||
|
|
||||||
|
author:
|
||||||
|
name: "garraflavatra"
|
||||||
|
avatar: "https://avatars.githubusercontent.com/u/34036573"
|
||||||
|
email: "romein@vburen.eu"
|
||||||
|
links:
|
||||||
|
- label: "Email"
|
||||||
|
icon: "fas fa-fw fa-envelope-square"
|
||||||
|
url: "mailto:romein@vburen.eu"
|
||||||
|
- label: "Website"
|
||||||
|
icon: "fas fa-fw fa-link"
|
||||||
|
url: "https://garraflavatra.github.io"
|
||||||
|
- label: "GitHub"
|
||||||
|
icon: "fab fa-fw fa-github"
|
||||||
|
url: "https://github.com/garraflavatra/alphabet.js"
|
||||||
|
|
||||||
|
plugins:
|
||||||
|
- jekyll-include-cache
|
||||||
|
|
||||||
|
footer:
|
||||||
|
links:
|
||||||
|
- label: "GitHub"
|
||||||
|
icon: "fab fa-fw fa-github"
|
||||||
|
url: "https://github.com/garraflavatra/alphabet.js"
|
||||||
|
|
||||||
|
defaults:
|
||||||
|
- scope:
|
||||||
|
path: ""
|
||||||
|
values:
|
||||||
|
layout: single
|
||||||
|
toc: true
|
||||||
|
|
3
docs/_data/navigation.yml
Normal file
3
docs/_data/navigation.yml
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
main:
|
||||||
|
- title: "GitHub"
|
||||||
|
url: https://github.com/garraflavatra/alphabets
|
BIN
docs/images/competitors/alphabet-last-publish.png
Normal file
BIN
docs/images/competitors/alphabet-last-publish.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
133
docs/index.md
Normal file
133
docs/index.md
Normal file
@ -0,0 +1,133 @@
|
|||||||
|
---
|
||||||
|
title: Alphabets
|
||||||
|
---
|
||||||
|
|
||||||
|
A tiny JS dependency (<2kb!) which exports many alphabets for many use
|
||||||
|
cases.
|
||||||
|
|
||||||
|
[](https://github.com/garraflavatra/alphabets/actions/workflows/test.yml)
|
||||||
|
|
||||||
|
## Why would I use this?
|
||||||
|
|
||||||
|
### Why?
|
||||||
|
|
||||||
|
I have seen developers doing this:
|
||||||
|
|
||||||
|
```js
|
||||||
|
const alphabet = 'abcdefghijklmnopqrstuvwxyz'.split('');
|
||||||
|
```
|
||||||
|
|
||||||
|
Or worse:
|
||||||
|
|
||||||
|
```js
|
||||||
|
const alphabet = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"];
|
||||||
|
```
|
||||||
|
|
||||||
|
My opinion about this? 🙄. It's ugly, it makes your code less readable
|
||||||
|
(read: ugly) and it's simply not something you should want to have in your
|
||||||
|
code! Instead, you should do it like so:
|
||||||
|
|
||||||
|
```js
|
||||||
|
import { latin } from 'alphabets';
|
||||||
|
// or
|
||||||
|
const alphabets = require('alphabets');
|
||||||
|
```
|
||||||
|
|
||||||
|
Much cleaner, right? That's why I made this package.
|
||||||
|
|
||||||
|
### Why not?
|
||||||
|
|
||||||
|
I see very few reasons not to use this package.
|
||||||
|
|
||||||
|
#### But doesn't it cost me performance?
|
||||||
|
|
||||||
|
No. This package is only <800 bytes so it should not cost you any performance.
|
||||||
|
Neither via CDN nor if you use a bundler like webpack, Parcel or Rollup.
|
||||||
|
|
||||||
|
#### Why not making an array on my own?
|
||||||
|
|
||||||
|
It's a choice. This whole package is **opinionated**. *I* think you should not
|
||||||
|
do `const alphabet = 'abcdefghijklmnopqrstuvwxyz'.split('');` in your code. *I*
|
||||||
|
think you should use a package for that. Do you think it's OK to define your own
|
||||||
|
alphabet array? Do that!
|
||||||
|
|
||||||
|
### Competitors
|
||||||
|
|
||||||
|
Know more alternatives? Please open an
|
||||||
|
[issue](https://github.com/garraflavatra/alphabet.js/issues/new) or
|
||||||
|
[pull request](https://github.com/garraflavatra/alphabet.js)!
|
||||||
|
{: .notice--info}
|
||||||
|
|
||||||
|
#### [alphabet](https://www.npmjs.com/package/alphabet)
|
||||||
|
|
||||||
|
Seems a good alternative, right? But:
|
||||||
|
|
||||||
|
* It only supports the Latin alphabet.
|
||||||
|
* It is larger. (The size is equal to this package's size, but this package
|
||||||
|
includes more.)
|
||||||
|
* It is only [CommonJS](https://en.wikipedia.org/wiki/CommonJS) and not
|
||||||
|
[ECMAScript](https://en.wikipedia.org/wiki/ECMAScript) etc.
|
||||||
|
* When did the author last update it? Right.
|
||||||
|
<figure>
|
||||||
|
<img src="/images/competitors/alphabet-last-publish.png" alt="Last updated: 6 years ago">
|
||||||
|
<figcaption>Hmmm...</figcaption>
|
||||||
|
</figure>
|
||||||
|
|
||||||
|
I do not say this package doesn't work. I think it will work perfectly, but it
|
||||||
|
has less features.
|
||||||
|
{: .notice--warning}
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
### Installation
|
||||||
|
|
||||||
|
Use npm:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
npm install alphabets --save
|
||||||
|
```
|
||||||
|
|
||||||
|
Or if you prefer Yarn:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
yarn add alphabets
|
||||||
|
```
|
||||||
|
|
||||||
|
CDN, if that's more your style:
|
||||||
|
|
||||||
|
```html
|
||||||
|
<script src="https://unpkg.com/alphabet@1/dist/bundle.js"></script>
|
||||||
|
```
|
||||||
|
|
||||||
|
### Usage
|
||||||
|
|
||||||
|
```js
|
||||||
|
import { <alphabetYouWantToUse> } from 'alphabets';
|
||||||
|
```
|
||||||
|
|
||||||
|
or:
|
||||||
|
|
||||||
|
```js
|
||||||
|
const alphabets = require('alphabets');
|
||||||
|
console.log(alphabets.<alphabetYouWantToUse>);
|
||||||
|
```
|
||||||
|
|
||||||
|
where `<alphabetYouWantToUse>` is an alphabet this package supports.
|
||||||
|
[Here](#supported-alphabets) is a list from which you can choose.
|
||||||
|
|
||||||
|
## API
|
||||||
|
|
||||||
|
### Supported alphabets
|
||||||
|
|
||||||
|
Usage: see [Usage](#usage).
|
||||||
|
|
||||||
|
| Name | Export name |
|
||||||
|
|------|-------------|
|
||||||
|
| Danish | `danish` |
|
||||||
|
| Faroese | `faroese` |
|
||||||
|
| Greek (modern) | `greek` |
|
||||||
|
| Greek (ancient/polytonic) | `greekPolytonic` |
|
||||||
|
| Icelandic | `icelandic` |
|
||||||
|
| Latin | `latin` |
|
||||||
|
| Norwegian | `norwegian` |
|
||||||
|
| Swedish | `swedish` |
|
14688
package-lock.json
generated
14688
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
49
package.json
49
package.json
@ -1,43 +1,26 @@
|
|||||||
{
|
{
|
||||||
"name": "alphabets",
|
"name": "alphabets",
|
||||||
"description": "A collection of many different alphabets for many different use cases. ",
|
"version": "1.1.0",
|
||||||
"author": "Romein van Buren <romein@vburen.nl>",
|
"description": "Exports many alphabets for many use cases",
|
||||||
"version": "2.0.5",
|
"main": "dist/bundle.js",
|
||||||
"homepage": "https://github.com/garraflavatra/alphabets#readme",
|
"scripts": {
|
||||||
|
"build": "rollup -c",
|
||||||
|
"prepare": "husky install",
|
||||||
|
"test": "jest"
|
||||||
|
},
|
||||||
|
"keywords": [],
|
||||||
|
"author": "Romein van Buren <romein@vburen.eu>",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"keywords": [
|
"homepage": "https://alphabets.romeinvanburen.nl",
|
||||||
"alphabet",
|
|
||||||
"alphabets"
|
|
||||||
],
|
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/garraflavatra/alphabets.git"
|
"url": "https://github.com/garraflavatra/alphabets.git"
|
||||||
},
|
},
|
||||||
"main": "alphabets.cjs",
|
|
||||||
"module": "alphabets.mjs",
|
|
||||||
"files": [
|
|
||||||
"alphabets.cjs",
|
|
||||||
"alphabets.mjs",
|
|
||||||
"alphabets.json"
|
|
||||||
],
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@garraflavatra/yeslint": "^1.0.0",
|
"husky": "^6.0.0",
|
||||||
"eslint": "^8.46.0"
|
"jest": "^26.6.3",
|
||||||
},
|
"rollup": "^2.49.0",
|
||||||
"eslintConfig": {
|
"rollup-plugin-clear": "^2.0.7",
|
||||||
"extends": "./node_modules/@garraflavatra/yeslint/configs/node.js",
|
"rollup-plugin-terser": "^7.0.2"
|
||||||
"rules": {
|
|
||||||
"strict": "off"
|
|
||||||
},
|
|
||||||
"overrides": [
|
|
||||||
{
|
|
||||||
"files": [
|
|
||||||
"*.mjs"
|
|
||||||
],
|
|
||||||
"parserOptions": {
|
|
||||||
"sourceType": "module"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
15
rollup.config.js
Normal file
15
rollup.config.js
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
import clear from 'rollup-plugin-clear';
|
||||||
|
import { terser } from "rollup-plugin-terser";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
input: 'src/main.js',
|
||||||
|
output: {
|
||||||
|
file: 'dist/bundle.js',
|
||||||
|
format: 'umd',
|
||||||
|
name: 'alphabets',
|
||||||
|
},
|
||||||
|
plugins: [
|
||||||
|
terser(),
|
||||||
|
clear({ targets: ['dist'] }),
|
||||||
|
],
|
||||||
|
};
|
19
src/bundle.test.js
Normal file
19
src/bundle.test.js
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
// These tests are just samples and not every alphabet is tested (that's boring).
|
||||||
|
|
||||||
|
const alphabets = require("../dist/bundle.js");
|
||||||
|
|
||||||
|
const greek = ["α", "β", "γ", "δ", "ε", "ζ", "η", "θ", "ι", "κ", "λ", "μ", "ν", "ξ", "ο", "π", "ρ", "σ", "τ", "υ", "φ", "χ", "ψ", "ω"];
|
||||||
|
const greekPolytonic = ["α", "β", "γ", "δ", "ε", "ζ", "η", "θ", "ι", "κ", "λ", "μ", "ν", "ξ", "ο", "π", "ρ", "σ", "τ", "υ", "φ", "χ", "ψ", "ω"];
|
||||||
|
const latin = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"];
|
||||||
|
|
||||||
|
test('alphabets.latin should return Latin alphabet', () => {
|
||||||
|
expect(alphabets.latin).toStrictEqual(latin);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('alphabets.greek should return Greek alphabet', () => {
|
||||||
|
expect(alphabets.greek).toStrictEqual(greek);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('alphabets.greekPolytonic should return Greek (Polytonic) alphabet', () => {
|
||||||
|
expect(alphabets.greekPolytonic).toStrictEqual(greekPolytonic);
|
||||||
|
});
|
21
src/main.js
Normal file
21
src/main.js
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
export const danish = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'æ', 'ø', 'å'];
|
||||||
|
export const elfadian = ['a', 'ą', 'b', 'd', 'ð', 'e', 'ę', 'f', 'g', 'h', 'i', 'į', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'r', 's', 't', 'u', 'ų', 'v', 'w', 'y', 'y̨', 'å', 'ą̊', 'ä', 'ö'];
|
||||||
|
export const faroese = ['a', 'á', 'b', 'd', 'ð', 'e', 'f', 'g', 'h', 'i', 'í', 'j', 'k', 'l', 'm', 'n', 'o', 'ó', 'p', 'r', 's', 't', 'u', 'ú', 'v', 'y', 'ý', 'æ', 'ø'];
|
||||||
|
export const greek = ["α", "β", "γ", "δ", "ε", "ζ", "η", "θ", "ι", "κ", "λ", "μ", "ν", "ξ", "ο", "π", "ρ", "σ", "τ", "υ", "φ", "χ", "ψ", "ω"];
|
||||||
|
export const greekPolytonic = ["α", "β", "γ", "δ", "ε", "ζ", "η", "θ", "ι", "κ", "λ", "μ", "ν", "ξ", "ο", "π", "ρ", "σ", "τ", "υ", "φ", "χ", "ψ", "ω"];
|
||||||
|
export const icelandic = ['a', 'á', 'b', 'd', 'ð', 'e', 'é', 'f', 'g', 'h', 'i', 'í', 'j', 'k', 'l', 'm', 'n', 'o', 'ó', 'p', 'r', 's', 't', 'u', 'ú', 'v', 'x', 'y', 'ý', 'þ', 'æ', 'ö'];
|
||||||
|
export const latin = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"];
|
||||||
|
export const norwegian = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'æ', 'ø', 'å'];
|
||||||
|
export const swedish = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'å', 'ä', 'ö'];
|
||||||
|
|
||||||
|
export default [
|
||||||
|
danish,
|
||||||
|
elfadian,
|
||||||
|
faroese,
|
||||||
|
greek,
|
||||||
|
greekPolytonic,
|
||||||
|
icelandic,
|
||||||
|
latin,
|
||||||
|
norwegian,
|
||||||
|
swedish,
|
||||||
|
];
|
Loading…
x
Reference in New Issue
Block a user