From 9b6a9dbcfca874a5363cace27b041bc5824c6820 Mon Sep 17 00:00:00 2001 From: Vlad Pronsky Date: Thu, 1 Jun 2023 18:38:26 +0300 Subject: [PATCH] release 1.2 --- package.json | 13 ++++++++++--- src/main.ts | 4 ++++ 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 0276a57..944f12c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "type": "module", "name": "fractions-math", - "version": "1.1.0", + "version": "1.2.0", "author": "Vlad Pronsky ", "repository": "vladkens/fractions-math", "description": "Implementing fractions module from The Python Standard Library on TypeScript", @@ -9,13 +9,20 @@ "keywords": [ "arithmetic", "calculations", + "convert", + "decimal", + "format", + "fraction", "fractions", + "imperial", "math", + "number", "numbers", "precise", "python", - "rational numbers", - "rational" + "rational", + "string", + "vulgar" ], "files": [ "dist" diff --git a/src/main.ts b/src/main.ts index 846ea27..b53a99c 100644 --- a/src/main.ts +++ b/src/main.ts @@ -19,6 +19,10 @@ const UniNumber: Record = { "7/8": "⅞", } +/** + * From: https://github.com/lights0123/fractions + */ + const SupNumber: Record = { "0": "⁰", "1": "¹",