ciphers-gematria 1.0.0 → 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.
package/README.md CHANGED
@@ -9,7 +9,7 @@ It supports **ESM**, is **tree-shakable**, and allows users to import **all ciph
9
9
 
10
10
  ```bash
11
11
  npm install ciphers-gematria
12
- # or with yarn
12
+ # or with yarn
13
13
  yarn add ciphers-gematria
14
14
  ```
15
15
 
@@ -25,7 +25,7 @@ console.log(result);
25
25
  {
26
26
  Ordinal: 52,
27
27
  Reduction: 25,
28
- Reverse: 83,
28
+ ReverseOrdinal: 83,
29
29
  ReverseReduction: 20,
30
30
  Standard: 133,
31
31
  Latin: 103,
@@ -67,3 +67,10 @@ import { sumerian, chaldean } from 'ciphers-gematria';
67
67
  console.log(sumerian('hello')); // 312
68
68
  console.log(chaldean('hello')); // 23
69
69
  ```
70
+
71
+ ---
72
+ ## 🤝Contribution
73
+
74
+ Contributions are welcome! If you’d like to add a new cipher.
75
+
76
+ Fork the repository and create a pull request.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ciphers-gematria",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "gematria calculator (Ordinal, Sumerian, Chaldean, Primes, etc.)",
5
5
  "main": "index.js",
6
6
  "type": "module",
package/src/calcul.js CHANGED
@@ -126,7 +126,7 @@ export function ciphers(text) {
126
126
  return {
127
127
  Ordinal: ordinal(text),
128
128
  Reduction: reduction(text),
129
- reverseOrdinal: reverseOrdinal(text),
129
+ ReverseOrdinal: reverseOrdinal(text),
130
130
  ReverseReduction: reverseReduction(text),
131
131
 
132
132
  Standard: standard(text),