Skip to content

Commit

Permalink
release 1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
vladkens committed Jun 1, 2023
1 parent e28d7d0 commit 9b6a9db
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
13 changes: 10 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,28 @@
{
"type": "module",
"name": "fractions-math",
"version": "1.1.0",
"version": "1.2.0",
"author": "Vlad Pronsky <[email protected]>",
"repository": "vladkens/fractions-math",
"description": "Implementing fractions module from The Python Standard Library on TypeScript",
"license": "MIT",
"keywords": [
"arithmetic",
"calculations",
"convert",
"decimal",
"format",
"fraction",
"fractions",
"imperial",
"math",
"number",
"numbers",
"precise",
"python",
"rational numbers",
"rational"
"rational",
"string",
"vulgar"
],
"files": [
"dist"
Expand Down
4 changes: 4 additions & 0 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ const UniNumber: Record<string, string> = {
"7/8": "⅞",
}

/**
* From: https://github.com/lights0123/fractions
*/

const SupNumber: Record<string, string> = {
"0": "⁰",
"1": "¹",
Expand Down

0 comments on commit 9b6a9db

Please sign in to comment.