Skip to content

Commit 9b6a9db

Browse files
committed
release 1.2
1 parent e28d7d0 commit 9b6a9db

2 files changed

Lines changed: 14 additions & 3 deletions

File tree

package.json

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,28 @@
11
{
22
"type": "module",
33
"name": "fractions-math",
4-
"version": "1.1.0",
4+
"version": "1.2.0",
55
"author": "Vlad Pronsky <v.pronsky@gmail.com>",
66
"repository": "vladkens/fractions-math",
77
"description": "Implementing fractions module from The Python Standard Library on TypeScript",
88
"license": "MIT",
99
"keywords": [
1010
"arithmetic",
1111
"calculations",
12+
"convert",
13+
"decimal",
14+
"format",
15+
"fraction",
1216
"fractions",
17+
"imperial",
1318
"math",
19+
"number",
1420
"numbers",
1521
"precise",
1622
"python",
17-
"rational numbers",
18-
"rational"
23+
"rational",
24+
"string",
25+
"vulgar"
1926
],
2027
"files": [
2128
"dist"

src/main.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ const UniNumber: Record<string, string> = {
1919
"7/8": "⅞",
2020
}
2121

22+
/**
23+
* From: https://github.com/lights0123/fractions
24+
*/
25+
2226
const SupNumber: Record<string, string> = {
2327
"0": "⁰",
2428
"1": "¹",

0 commit comments

Comments
 (0)