Skip to content

Commit

Permalink
240503 minors (#16)
Browse files Browse the repository at this point in the history
* fix some text

* fix

* capital letter
  • Loading branch information
amerharb authored May 8, 2024
1 parent b6eb0df commit d11c89d
Show file tree
Hide file tree
Showing 14 changed files with 145 additions and 145 deletions.
2 changes: 1 addition & 1 deletion packages/aegean/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

## [0.0.1] 2024-05-02
### Added
- Initial project covert number into aegean numerals
- Initial project covert number into Aegean numerals
2 changes: 1 addition & 1 deletion packages/aegean/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
![Coverage](https://raw.githubusercontent.com/amerharb/numerals/aegean/version/0.0.1/packages/aegean/badges/coverage.svg)
![Github workflow](https://github.com/amerharb/numerals/actions/workflows/lint-test.yaml/badge.svg?branch=aegean/version/0.0.1)

**@numerals/aegean** is a package for converting number into aegean numeral.
**@numerals/aegean** is a package for converting number into Aegean numeral.

`1000 -> ๐„ข`

Expand Down
90 changes: 45 additions & 45 deletions packages/aegean/src/numerals.ts
Original file line number Diff line number Diff line change
@@ -1,53 +1,53 @@
const numbers = [
String.fromCodePoint(0x10107), /** #0 ๐„‡ U+10107 aegean numeral 1 */
String.fromCodePoint(0x10108), /** #1 ๐„ˆ U+10108 aegean numeral 2 */
String.fromCodePoint(0x10109), /** #2 ๐„‰ U+10109 aegean numeral 3 */
String.fromCodePoint(0x1010A), /** #3 ๐„Š U+1010A aegean numeral 4 */
String.fromCodePoint(0x1010B), /** #4 ๐„‹ U+1010B aegean numeral 5 */
String.fromCodePoint(0x1010C), /** #5 ๐„Œ U+1010C aegean numeral 6 */
String.fromCodePoint(0x1010D), /** #6 ๐„ U+1010D aegean numeral 7 */
String.fromCodePoint(0x1010E), /** #7 ๐„Ž U+1010E aegean numeral 8 */
String.fromCodePoint(0x1010F), /** #8 ๐„ U+1010F aegean numeral 9 */
String.fromCodePoint(0x10107), /** #0 ๐„‡ U+10107 Aegean numeral 1 */
String.fromCodePoint(0x10108), /** #1 ๐„ˆ U+10108 Aegean numeral 2 */
String.fromCodePoint(0x10109), /** #2 ๐„‰ U+10109 Aegean numeral 3 */
String.fromCodePoint(0x1010A), /** #3 ๐„Š U+1010A Aegean numeral 4 */
String.fromCodePoint(0x1010B), /** #4 ๐„‹ U+1010B Aegean numeral 5 */
String.fromCodePoint(0x1010C), /** #5 ๐„Œ U+1010C Aegean numeral 6 */
String.fromCodePoint(0x1010D), /** #6 ๐„ U+1010D Aegean numeral 7 */
String.fromCodePoint(0x1010E), /** #7 ๐„Ž U+1010E Aegean numeral 8 */
String.fromCodePoint(0x1010F), /** #8 ๐„ U+1010F Aegean numeral 9 */

String.fromCodePoint(0x10110), /** #9 ๐„ U+10110 aegean numeral 10 */
String.fromCodePoint(0x10111), /** #10 ๐„‘ U+10111 aegean numeral 20 */
String.fromCodePoint(0x10112), /** #11 ๐„’ U+10112 aegean numeral 30 */
String.fromCodePoint(0x10113), /** #12 ๐„“ U+10113 aegean numeral 40 */
String.fromCodePoint(0x10114), /** #13 ๐„” U+10114 aegean numeral 50 */
String.fromCodePoint(0x10115), /** #14 ๐„• U+10115 aegean numeral 60 */
String.fromCodePoint(0x10116), /** #15 ๐„– U+10116 aegean numeral 70 */
String.fromCodePoint(0x10117), /** #16 ๐„— U+10117 aegean numeral 80 */
String.fromCodePoint(0x10118), /** #17 ๐„˜ U+10118 aegean numeral 90 */
String.fromCodePoint(0x10110), /** #9 ๐„ U+10110 Aegean numeral 10 */
String.fromCodePoint(0x10111), /** #10 ๐„‘ U+10111 Aegean numeral 20 */
String.fromCodePoint(0x10112), /** #11 ๐„’ U+10112 Aegean numeral 30 */
String.fromCodePoint(0x10113), /** #12 ๐„“ U+10113 Aegean numeral 40 */
String.fromCodePoint(0x10114), /** #13 ๐„” U+10114 Aegean numeral 50 */
String.fromCodePoint(0x10115), /** #14 ๐„• U+10115 Aegean numeral 60 */
String.fromCodePoint(0x10116), /** #15 ๐„– U+10116 Aegean numeral 70 */
String.fromCodePoint(0x10117), /** #16 ๐„— U+10117 Aegean numeral 80 */
String.fromCodePoint(0x10118), /** #17 ๐„˜ U+10118 Aegean numeral 90 */

String.fromCodePoint(0x10119), /** #18 ๐„™ U+10119 aegean numeral 100 */
String.fromCodePoint(0x1011A), /** #19 ๐„š U+1011A aegean numeral 200 */
String.fromCodePoint(0x1011B), /** #20 ๐„› U+1011B aegean numeral 300 */
String.fromCodePoint(0x1011C), /** #21 ๐„œ U+1011C aegean numeral 400 */
String.fromCodePoint(0x1011D), /** #22 ๐„ U+1011D aegean numeral 500 */
String.fromCodePoint(0x1011E), /** #23 ๐„ž U+1011E aegean numeral 600 */
String.fromCodePoint(0x1011F), /** #24 ๐„Ÿ U+1011F aegean numeral 700 */
String.fromCodePoint(0x10120), /** #25 ๐„  U+10120 aegean numeral 800 */
String.fromCodePoint(0x10121), /** #26 ๐„ก U+10121 aegean numeral 900 */
String.fromCodePoint(0x10119), /** #18 ๐„™ U+10119 Aegean numeral 100 */
String.fromCodePoint(0x1011A), /** #19 ๐„š U+1011A Aegean numeral 200 */
String.fromCodePoint(0x1011B), /** #20 ๐„› U+1011B Aegean numeral 300 */
String.fromCodePoint(0x1011C), /** #21 ๐„œ U+1011C Aegean numeral 400 */
String.fromCodePoint(0x1011D), /** #22 ๐„ U+1011D Aegean numeral 500 */
String.fromCodePoint(0x1011E), /** #23 ๐„ž U+1011E Aegean numeral 600 */
String.fromCodePoint(0x1011F), /** #24 ๐„Ÿ U+1011F Aegean numeral 700 */
String.fromCodePoint(0x10120), /** #25 ๐„  U+10120 Aegean numeral 800 */
String.fromCodePoint(0x10121), /** #26 ๐„ก U+10121 Aegean numeral 900 */

String.fromCodePoint(0x10122), /** #27 ๐„ข U+10122 aegean numeral 1000 */
String.fromCodePoint(0x10123), /** #28 ๐„ฃ U+10123 aegean numeral 2000 */
String.fromCodePoint(0x10124), /** #29 ๐„ค U+10124 aegean numeral 3000 */
String.fromCodePoint(0x10125), /** #30 ๐„ฅ U+10125 aegean numeral 4000 */
String.fromCodePoint(0x10126), /** #31 ๐„ฆ U+10126 aegean numeral 5000 */
String.fromCodePoint(0x10127), /** #32 ๐„ง U+10127 aegean numeral 6000 */
String.fromCodePoint(0x10128), /** #33 ๐„จ U+10128 aegean numeral 7000 */
String.fromCodePoint(0x10129), /** #34 ๐„ฉ U+10129 aegean numeral 8000 */
String.fromCodePoint(0x1012A), /** #35 ๐„ช U+1012A aegean numeral 9000 */
String.fromCodePoint(0x10122), /** #27 ๐„ข U+10122 Aegean numeral 1000 */
String.fromCodePoint(0x10123), /** #28 ๐„ฃ U+10123 Aegean numeral 2000 */
String.fromCodePoint(0x10124), /** #29 ๐„ค U+10124 Aegean numeral 3000 */
String.fromCodePoint(0x10125), /** #30 ๐„ฅ U+10125 Aegean numeral 4000 */
String.fromCodePoint(0x10126), /** #31 ๐„ฆ U+10126 Aegean numeral 5000 */
String.fromCodePoint(0x10127), /** #32 ๐„ง U+10127 Aegean numeral 6000 */
String.fromCodePoint(0x10128), /** #33 ๐„จ U+10128 Aegean numeral 7000 */
String.fromCodePoint(0x10129), /** #34 ๐„ฉ U+10129 Aegean numeral 8000 */
String.fromCodePoint(0x1012A), /** #35 ๐„ช U+1012A Aegean numeral 9000 */

String.fromCodePoint(0x1012B), /** #36 ๐„ซ U+1012B aegean numeral 10,000 */
String.fromCodePoint(0x1012C), /** #37 ๐„ฌ U+1012C aegean numeral 20,000 */
String.fromCodePoint(0x1012D), /** #38 ๐„ญ U+1012D aegean numeral 30,000 */
String.fromCodePoint(0x1012E), /** #39 ๐„ฎ U+1012E aegean numeral 40,000 */
String.fromCodePoint(0x1012F), /** #40 ๐„ฏ U+1012F aegean numeral 50,000 */
String.fromCodePoint(0x10130), /** #41 ๐„ฐ U+10130 aegean numeral 60,000 */
String.fromCodePoint(0x10131), /** #42 ๐„ฑ U+10131 aegean numeral 70,000 */
String.fromCodePoint(0x10132), /** #43 ๐„ฒ U+10132 aegean numeral 80,000 */
String.fromCodePoint(0x10133), /** #44 ๐„ณ U+10133 aegean numeral 90,000 */
String.fromCodePoint(0x1012B), /** #36 ๐„ซ U+1012B Aegean numeral 10,000 */
String.fromCodePoint(0x1012C), /** #37 ๐„ฌ U+1012C Aegean numeral 20,000 */
String.fromCodePoint(0x1012D), /** #38 ๐„ญ U+1012D Aegean numeral 30,000 */
String.fromCodePoint(0x1012E), /** #39 ๐„ฎ U+1012E Aegean numeral 40,000 */
String.fromCodePoint(0x1012F), /** #40 ๐„ฏ U+1012F Aegean numeral 50,000 */
String.fromCodePoint(0x10130), /** #41 ๐„ฐ U+10130 Aegean numeral 60,000 */
String.fromCodePoint(0x10131), /** #42 ๐„ฑ U+10131 Aegean numeral 70,000 */
String.fromCodePoint(0x10132), /** #43 ๐„ฒ U+10132 Aegean numeral 80,000 */
String.fromCodePoint(0x10133), /** #44 ๐„ณ U+10133 Aegean numeral 90,000 */
] as const

export const Ag = {
Expand Down
2 changes: 1 addition & 1 deletion packages/eastern-arabic/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@

## [0.0.1] 2024-03-05
### Added
- Initial project covert number into eastern arabic numerals
- Initial project covert number into Eastern Arabic numerals
2 changes: 1 addition & 1 deletion packages/eastern-arabic/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
![Coverage](https://raw.githubusercontent.com/amerharb/numerals/eastern-arabic/version/0.0.2/packages/eastern-arabic/badges/coverage.svg)
![Github workflow](https://github.com/amerharb/numerals/actions/workflows/lint-test.yaml/badge.svg?branch=eastern-arabic/version/0.0.2)

**@numerals/eastern-arabic** is a package for converting number into eastern arabic numeral.
**@numerals/eastern-arabic** is a package for converting number into Eastern Arabic numeral.

`123 -> ูกูขูฃ`

Expand Down
4 changes: 2 additions & 2 deletions packages/hieroglyphic/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# hieroglyphic Changelog
# Hieroglyphic Changelog
<!-- https://keepachangelog.com/en/1.0.0/ -->

## [0.0.2] 2024-05-01
Expand All @@ -8,4 +8,4 @@

## [0.0.1] 2024-04-30
### Added
- Initial project covert number into hieroglyphic numerals
- Initial project covert number into Hieroglyphic numerals
2 changes: 1 addition & 1 deletion packages/hieroglyphic/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
![Coverage](https://raw.githubusercontent.com/amerharb/numerals/hieroglyphic/version/0.0.2/packages/hieroglyphic/badges/coverage.svg)
![Github workflow](https://github.com/amerharb/numerals/actions/workflows/lint-test.yaml/badge.svg?branch=hieroglyphic/version/0.0.2)

**@numerals/hieroglyphic** is a package for converting number into hieroglyphic numeral.
**@numerals/hieroglyphic** is a package for converting number into Hieroglyphic numeral.

`2 -> ๐“ป`

Expand Down
94 changes: 47 additions & 47 deletions packages/hieroglyphic/src/numerals.ts
Original file line number Diff line number Diff line change
@@ -1,56 +1,56 @@
const numbers = [
String.fromCodePoint(0x133FA), /** #0 ๐“บ U+133FA hieroglyphic numeral 1 */
String.fromCodePoint(0x133FB), /** #1 ๐“ป U+133FB hieroglyphic numeral 2 */
String.fromCodePoint(0x133FC), /** #2 ๐“ผ U+133FC hieroglyphic numeral 3 */
String.fromCodePoint(0x133FD), /** #3 ๐“ฝ U+133FD hieroglyphic numeral 4 */
String.fromCodePoint(0x133FE), /** #4 ๐“พ U+133FE hieroglyphic numeral 5 */
String.fromCodePoint(0x133FF), /** #5 ๐“ฟ U+133FF hieroglyphic numeral 6 */
String.fromCodePoint(0x13400), /** #6 ๐“€ U+13400 hieroglyphic numeral 7 */
String.fromCodePoint(0x13401), /** #7 ๐“ U+13401 hieroglyphic numeral 8 */
String.fromCodePoint(0x13402), /** #8 ๐“‚ U+13402 hieroglyphic numeral 9 */
String.fromCodePoint(0x133FA), /** #0 ๐“บ U+133FA Hieroglyphic numeral 1 */
String.fromCodePoint(0x133FB), /** #1 ๐“ป U+133FB Hieroglyphic numeral 2 */
String.fromCodePoint(0x133FC), /** #2 ๐“ผ U+133FC Hieroglyphic numeral 3 */
String.fromCodePoint(0x133FD), /** #3 ๐“ฝ U+133FD Hieroglyphic numeral 4 */
String.fromCodePoint(0x133FE), /** #4 ๐“พ U+133FE Hieroglyphic numeral 5 */
String.fromCodePoint(0x133FF), /** #5 ๐“ฟ U+133FF Hieroglyphic numeral 6 */
String.fromCodePoint(0x13400), /** #6 ๐“€ U+13400 Hieroglyphic numeral 7 */
String.fromCodePoint(0x13401), /** #7 ๐“ U+13401 Hieroglyphic numeral 8 */
String.fromCodePoint(0x13402), /** #8 ๐“‚ U+13402 Hieroglyphic numeral 9 */

String.fromCodePoint(0x13386), /** #9 ๐“Ž† U+13386 hieroglyphic numeral 10 */
String.fromCodePoint(0x13387), /** #10 ๐“Ž‡ U+13387 hieroglyphic numeral 20 */
String.fromCodePoint(0x13388), /** #11 ๐“Žˆ U+13388 hieroglyphic numeral 30 */
String.fromCodePoint(0x13389), /** #12 ๐“Ž‰ U+13389 hieroglyphic numeral 40 */
String.fromCodePoint(0x1338A), /** #13 ๐“ŽŠ U+1338A hieroglyphic numeral 50 */
String.fromCodePoint(0x1338B), /** #14 ๐“Ž‹ U+1338B hieroglyphic numeral 60 */
String.fromCodePoint(0x1338C), /** #15 ๐“ŽŒ U+1338C hieroglyphic numeral 70 */
String.fromCodePoint(0x1338D), /** #16 ๐“Ž U+1338D hieroglyphic numeral 80 */
String.fromCodePoint(0x1338E), /** #17 ๐“ŽŽ U+1338E hieroglyphic numeral 90 */
String.fromCodePoint(0x13386), /** #9 ๐“Ž† U+13386 Hieroglyphic numeral 10 */
String.fromCodePoint(0x13387), /** #10 ๐“Ž‡ U+13387 Hieroglyphic numeral 20 */
String.fromCodePoint(0x13388), /** #11 ๐“Žˆ U+13388 Hieroglyphic numeral 30 */
String.fromCodePoint(0x13389), /** #12 ๐“Ž‰ U+13389 Hieroglyphic numeral 40 */
String.fromCodePoint(0x1338A), /** #13 ๐“ŽŠ U+1338A Hieroglyphic numeral 50 */
String.fromCodePoint(0x1338B), /** #14 ๐“Ž‹ U+1338B Hieroglyphic numeral 60 */
String.fromCodePoint(0x1338C), /** #15 ๐“ŽŒ U+1338C Hieroglyphic numeral 70 */
String.fromCodePoint(0x1338D), /** #16 ๐“Ž U+1338D Hieroglyphic numeral 80 */
String.fromCodePoint(0x1338E), /** #17 ๐“ŽŽ U+1338E Hieroglyphic numeral 90 */

String.fromCodePoint(0x13362), /** #18 ๐“ข U+13362 hieroglyphic numeral 100 */
String.fromCodePoint(0x13363), /** #19 ๐“ฃ U+13363 hieroglyphic numeral 200 */
String.fromCodePoint(0x13364), /** #20 ๐“ค U+13364 hieroglyphic numeral 300 */
String.fromCodePoint(0x13365), /** #21 ๐“ฅ U+13365 hieroglyphic numeral 400 */
String.fromCodePoint(0x13366), /** #22 ๐“ฆ U+13366 hieroglyphic numeral 500 */
String.fromCodePoint(0x13367), /** #23 ๐“ง U+13367 hieroglyphic numeral 600 */
String.fromCodePoint(0x13368), /** #24 ๐“จ U+13368 hieroglyphic numeral 700 */
String.fromCodePoint(0x13369), /** #25 ๐“ฉ U+13369 hieroglyphic numeral 800 */
String.fromCodePoint(0x1336A), /** #26 ๐“ช U+1336A hieroglyphic numeral 900 */
String.fromCodePoint(0x13362), /** #18 ๐“ข U+13362 Hieroglyphic numeral 100 */
String.fromCodePoint(0x13363), /** #19 ๐“ฃ U+13363 Hieroglyphic numeral 200 */
String.fromCodePoint(0x13364), /** #20 ๐“ค U+13364 Hieroglyphic numeral 300 */
String.fromCodePoint(0x13365), /** #21 ๐“ฅ U+13365 Hieroglyphic numeral 400 */
String.fromCodePoint(0x13366), /** #22 ๐“ฆ U+13366 Hieroglyphic numeral 500 */
String.fromCodePoint(0x13367), /** #23 ๐“ง U+13367 Hieroglyphic numeral 600 */
String.fromCodePoint(0x13368), /** #24 ๐“จ U+13368 Hieroglyphic numeral 700 */
String.fromCodePoint(0x13369), /** #25 ๐“ฉ U+13369 Hieroglyphic numeral 800 */
String.fromCodePoint(0x1336A), /** #26 ๐“ช U+1336A Hieroglyphic numeral 900 */

String.fromCodePoint(0x131BC), /** #27 ๐“†ผ U+131BC hieroglyphic numeral 1000 */
String.fromCodePoint(0x131BD), /** #28 ๐“†ฝ U+131BD hieroglyphic numeral 2000 */
String.fromCodePoint(0x131BE), /** #29 ๐“†พ U+131BE hieroglyphic numeral 3000 */
String.fromCodePoint(0x131BF), /** #30 ๐“†ฟ U+131BF hieroglyphic numeral 4000 */
String.fromCodePoint(0x131C0), /** #31 ๐“‡€ U+131C0 hieroglyphic numeral 5000 */
String.fromCodePoint(0x131C1), /** #32 ๐“‡ U+131C1 hieroglyphic numeral 6000 */
String.fromCodePoint(0x131C2), /** #33 ๐“‡‚ U+131C2 hieroglyphic numeral 7000 */
String.fromCodePoint(0x131C3), /** #34 ๐“‡ƒ U+131C3 hieroglyphic numeral 8000 */
String.fromCodePoint(0x131C4), /** #35 ๐“‡„ U+131C4 hieroglyphic numeral 9000 */
String.fromCodePoint(0x131BC), /** #27 ๐“†ผ U+131BC Hieroglyphic numeral 1000 */
String.fromCodePoint(0x131BD), /** #28 ๐“†ฝ U+131BD Hieroglyphic numeral 2000 */
String.fromCodePoint(0x131BE), /** #29 ๐“†พ U+131BE Hieroglyphic numeral 3000 */
String.fromCodePoint(0x131BF), /** #30 ๐“†ฟ U+131BF Hieroglyphic numeral 4000 */
String.fromCodePoint(0x131C0), /** #31 ๐“‡€ U+131C0 Hieroglyphic numeral 5000 */
String.fromCodePoint(0x131C1), /** #32 ๐“‡ U+131C1 Hieroglyphic numeral 6000 */
String.fromCodePoint(0x131C2), /** #33 ๐“‡‚ U+131C2 Hieroglyphic numeral 7000 */
String.fromCodePoint(0x131C3), /** #34 ๐“‡ƒ U+131C3 Hieroglyphic numeral 8000 */
String.fromCodePoint(0x131C4), /** #35 ๐“‡„ U+131C4 Hieroglyphic numeral 9000 */

String.fromCodePoint(0x130AD), /** #36 ๐“‚ญ U+130AD hieroglyphic numeral 10,000 */
String.fromCodePoint(0x130AE), /** #37 ๐“‚ฎ U+130AE hieroglyphic numeral 20,000 */
String.fromCodePoint(0x130AF), /** #38 ๐“‚ฏ U+130AF hieroglyphic numeral 30,000 */
String.fromCodePoint(0x130B0), /** #39 ๐“‚ฐ U+130B0 hieroglyphic numeral 40,000 */
String.fromCodePoint(0x130B1), /** #40 ๐“‚ฑ U+130B1 hieroglyphic numeral 50,000 */
String.fromCodePoint(0x130B2), /** #41 ๐“‚ฒ U+130B2 hieroglyphic numeral 60,000 */
String.fromCodePoint(0x130B3), /** #42 ๐“‚ณ U+130B3 hieroglyphic numeral 70,000 */
String.fromCodePoint(0x130B4), /** #43 ๐“‚ด U+130B4 hieroglyphic numeral 80,000 */
String.fromCodePoint(0x130B5), /** #44 ๐“‚ต U+130B5 hieroglyphic numeral 90,000 */
String.fromCodePoint(0x130AD), /** #36 ๐“‚ญ U+130AD Hieroglyphic numeral 10,000 */
String.fromCodePoint(0x130AE), /** #37 ๐“‚ฎ U+130AE Hieroglyphic numeral 20,000 */
String.fromCodePoint(0x130AF), /** #38 ๐“‚ฏ U+130AF Hieroglyphic numeral 30,000 */
String.fromCodePoint(0x130B0), /** #39 ๐“‚ฐ U+130B0 Hieroglyphic numeral 40,000 */
String.fromCodePoint(0x130B1), /** #40 ๐“‚ฑ U+130B1 Hieroglyphic numeral 50,000 */
String.fromCodePoint(0x130B2), /** #41 ๐“‚ฒ U+130B2 Hieroglyphic numeral 60,000 */
String.fromCodePoint(0x130B3), /** #42 ๐“‚ณ U+130B3 Hieroglyphic numeral 70,000 */
String.fromCodePoint(0x130B4), /** #43 ๐“‚ด U+130B4 Hieroglyphic numeral 80,000 */
String.fromCodePoint(0x130B5), /** #44 ๐“‚ต U+130B5 Hieroglyphic numeral 90,000 */

String.fromCodePoint(0x13190), /** #45 ๐“† U+13190 hieroglyphic numeral 100,000 */
String.fromCodePoint(0x13068), /** #46 ๐“จ U+13068 hieroglyphic numeral 1,000,000 */
String.fromCodePoint(0x13190), /** #45 ๐“† U+13190 Hieroglyphic numeral 100,000 */
String.fromCodePoint(0x13068), /** #46 ๐“จ U+13068 Hieroglyphic numeral 1,000,000 */

] as const

Expand Down
4 changes: 2 additions & 2 deletions packages/mayan/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# mayan Changelog
# Mayan Changelog
<!-- https://keepachangelog.com/en/1.0.0/ -->

## [0.0.1] 2024-04-25
### Added
- Initial project covert number into mayan numerals
- Initial project covert number into Mayan numerals
2 changes: 1 addition & 1 deletion packages/mayan/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
![Coverage](https://raw.githubusercontent.com/amerharb/numerals/mayan/version/0.0.1/packages/mayan/badges/coverage.svg)
![Github workflow](https://github.com/amerharb/numerals/actions/workflows/lint-test.yaml/badge.svg?branch=mayan/version/0.0.1)

**@numerals/mayan** is a package for converting number into mayan numeral.
**@numerals/mayan** is a package for converting number into Mayan numeral.

`19 -> ๐‹ณ`

Expand Down
40 changes: 20 additions & 20 deletions packages/mayan/src/numerals.ts
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
const numbers = [
'\ud834\uDEE0', /** #0 ๐‹  U+1D2E0 mayan numeral 0 */
'\ud834\uDEE1', /** #1 ๐‹ก U+1D2E1 mayan numeral 1 */
'\ud834\uDEE2', /** #2 ๐‹ข U+1D2E2 mayan numeral 2 */
'\ud834\uDEE3', /** #3 ๐‹ฃ U+1D2E3 mayan numeral 3 */
'\ud834\uDEE4', /** #4 ๐‹ค U+1D2E4 mayan numeral 4 */
'\ud834\uDEE5', /** #5 ๐‹ฅ U+1D2E5 mayan numeral 5 */
'\ud834\uDEE6', /** #6 ๐‹ฆ U+1D2E6 mayan numeral 6 */
'\ud834\uDEE7', /** #7 ๐‹ง U+1D2E7 mayan numeral 7 */
'\ud834\uDEE8', /** #8 ๐‹จ U+1D2E8 mayan numeral 8 */
'\ud834\uDEE9', /** #9 ๐‹ฉ U+1D2E9 mayan numeral 9 */
'\ud834\uDEEA', /** #10 ๐‹ช U+1D2EA mayan numeral 10 */
'\ud834\uDEEB', /** #11 ๐‹ซ U+1D2EB mayan numeral 11 */
'\ud834\uDEEC', /** #12 ๐‹ฌ U+1D2EC mayan numeral 12 */
'\ud834\uDEED', /** #13 ๐‹ญ U+1D2ED mayan numeral 13 */
'\ud834\uDEEE', /** #14 ๐‹ฎ U+1D2EE mayan numeral 14 */
'\ud834\uDEEF', /** #15 ๐‹ฏ U+1D2EF mayan numeral 15 */
'\ud834\uDEF0', /** #16 ๐‹ฐ U+1D2F0 mayan numeral 16 */
'\ud834\uDEF1', /** #17 ๐‹ฑ U+1D2F1 mayan numeral 17 */
'\ud834\uDEF2', /** #18 ๐‹ฒ U+1D2F2 mayan numeral 18 */
'\ud834\uDEF3', /** #19 ๐‹ณ U+1D2F3 mayan numeral 19 */
'\ud834\uDEE0', /** #0 ๐‹  U+1D2E0 Mayan numeral 0 */
'\ud834\uDEE1', /** #1 ๐‹ก U+1D2E1 Mayan numeral 1 */
'\ud834\uDEE2', /** #2 ๐‹ข U+1D2E2 Mayan numeral 2 */
'\ud834\uDEE3', /** #3 ๐‹ฃ U+1D2E3 Mayan numeral 3 */
'\ud834\uDEE4', /** #4 ๐‹ค U+1D2E4 Mayan numeral 4 */
'\ud834\uDEE5', /** #5 ๐‹ฅ U+1D2E5 Mayan numeral 5 */
'\ud834\uDEE6', /** #6 ๐‹ฆ U+1D2E6 Mayan numeral 6 */
'\ud834\uDEE7', /** #7 ๐‹ง U+1D2E7 Mayan numeral 7 */
'\ud834\uDEE8', /** #8 ๐‹จ U+1D2E8 Mayan numeral 8 */
'\ud834\uDEE9', /** #9 ๐‹ฉ U+1D2E9 Mayan numeral 9 */
'\ud834\uDEEA', /** #10 ๐‹ช U+1D2EA Mayan numeral 10 */
'\ud834\uDEEB', /** #11 ๐‹ซ U+1D2EB Mayan numeral 11 */
'\ud834\uDEEC', /** #12 ๐‹ฌ U+1D2EC Mayan numeral 12 */
'\ud834\uDEED', /** #13 ๐‹ญ U+1D2ED Mayan numeral 13 */
'\ud834\uDEEE', /** #14 ๐‹ฎ U+1D2EE Mayan numeral 14 */
'\ud834\uDEEF', /** #15 ๐‹ฏ U+1D2EF Mayan numeral 15 */
'\ud834\uDEF0', /** #16 ๐‹ฐ U+1D2F0 Mayan numeral 16 */
'\ud834\uDEF1', /** #17 ๐‹ฑ U+1D2F1 Mayan numeral 17 */
'\ud834\uDEF2', /** #18 ๐‹ฒ U+1D2F2 Mayan numeral 18 */
'\ud834\uDEF3', /** #19 ๐‹ณ U+1D2F3 Mayan numeral 19 */
] as const

export const Ma = {
Expand Down
2 changes: 1 addition & 1 deletion packages/roman/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@

## [0.0.1] 2024-05-01
### Added
- Initial project covert number into roman numerals
- Initial project covert number into Roman numerals
Loading

0 comments on commit d11c89d

Please sign in to comment.