Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/balewgize/geez-numeral-converter
A JavaScript library to convert numbers to Ethiopian Geez numerals
https://github.com/balewgize/geez-numeral-converter
geez geez-number number-converter
Last synced: 25 days ago
JSON representation
A JavaScript library to convert numbers to Ethiopian Geez numerals
- Host: GitHub
- URL: https://github.com/balewgize/geez-numeral-converter
- Owner: balewgize
- Created: 2024-02-26T20:21:32.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-02-26T20:49:18.000Z (11 months ago)
- Last Synced: 2024-11-09T20:38:52.584Z (3 months ago)
- Topics: geez, geez-number, number-converter
- Language: CSS
- Homepage: https://balewgize.github.io/geez-numeral-converter/
- Size: 1.35 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Geez Numeral Converter
[![Screenshot](images/screenshot.png?raw=true "Geez numeral converter")](https://github.com/balewgize/geez-numeral-converter)
The Geez Numeral Converter is a lightweight, easy-to-use JavaScript library that allows you to convert numbers into their corresponding Geez numeral representations. Designed to be straightforward and efficient, this library can handle a wide range of numbers, making it perfect for developers working with applications requiring Geez numerals.
## Features
- Convert numbers greather than or equal to 1 into Geez numerals.
- Simple and intuitive API.
- Lightweight with no external dependencies.## Getting Started
To get started with the Geez Numeral Converter, simply include the JavaScript file in your project.
### Prerequisites
There are no prerequisites for using this library, as it is built with vanilla JavaScript and does not require any external dependencies.
### Installation
1. Clone the repository to your local machine:
```bash
git clone https://github.com/balewgize/geez-numeral-converter.git
```2. Include the **geezConverter.js** in your HTML file:
```bash
```
### Usage
Using the Geez Numeral Converter is straightforward. Here is a quick example:
```bash
const number = 123;
const geezNumeral = convertToGeez(number);
console.log(geezNumeral); // Outputs ፻፳፫
```