tanisa 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -22,13 +22,13 @@
22
22
  1. Import the Magic:
23
23
 
24
24
  ```
25
- import { MalagasyNumberToWords } from 'tanisa'
25
+ import { Tanisa } from 'tanisa'
26
26
  ```
27
27
 
28
28
  2. Simply use it:
29
29
 
30
30
  ```
31
- const tanisa = new MalagasyNumberToWords();
31
+ const tanisa = new Tanisa();
32
32
 
33
33
  tanisa.toWords(233)
34
34
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tanisa",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "main": "src/index.ts",
5
5
  "description": "An utility to convert Malagasy 🇲🇬 numbers, including decimals, into their word representations.",
6
6
  "license": "MIT",