mirror of
https://github.com/garraflavatra/alphabets.git
synced 2025-01-19 05:37:59 +00:00
19 lines
338 B
Markdown
19 lines
338 B
Markdown
|
---
|
||
|
title: Usage
|
||
|
toc: false
|
||
|
---
|
||
|
|
||
|
```js
|
||
|
import { <alphabetYouWantToUse> } from 'alphabets';
|
||
|
```
|
||
|
|
||
|
or:
|
||
|
|
||
|
```js
|
||
|
const alphabets = require('alphabets');
|
||
|
console.log(alphabets.<alphabetYouWantToUse>);
|
||
|
```
|
||
|
|
||
|
where `<alphabetYouWantToUse>` is an alphabet this package supports.
|
||
|
[Here](/api/supported-alphabets) is a list from which you can choose.
|