ciphers-gematria 2.0.0 → 2.0.1

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
@@ -69,7 +69,7 @@ console.log(result);
69
69
  import { sumerian, latin, chaldean } from 'ciphers-gematria';
70
70
 
71
71
  console.log(sumerian('hello')); // 312
72
- console.log(gematria.chaldean('hello')); // 23
72
+ console.log(chaldean('hello')); // 23
73
73
  ```
74
74
 
75
75
  ### CJS
@@ -162,7 +162,7 @@ console.log(myCustomCipher('hello'));
162
162
  </table>
163
163
 
164
164
  ---
165
- ### 🤝Contribution
165
+ ## 🤝Contribution
166
166
 
167
167
  Contributions are welcome! If you’d like to add a new cipher.
168
168
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ciphers-gematria",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "gematria calculator (Ordinal, Sumerian, Chaldean, Primes, etc.)",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs.js",