ciphers-gematria 1.0.0 → 1.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.
- package/README.md +10 -3
- package/package.json +1 -1
- package/src/calcul.js +1 -1
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
|
-
|
|
28
|
+
ReverseOrdinal: 83,
|
|
29
29
|
ReverseReduction: 20,
|
|
30
30
|
Standard: 133,
|
|
31
31
|
Latin: 103,
|
|
@@ -65,5 +65,12 @@ console.log(result);
|
|
|
65
65
|
import { sumerian, chaldean } from 'ciphers-gematria';
|
|
66
66
|
|
|
67
67
|
console.log(sumerian('hello')); // 312
|
|
68
|
-
console.log(chaldean('hello')); // 23
|
|
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
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
|
-
|
|
129
|
+
ReverseOrdinal: reverseOrdinal(text),
|
|
130
130
|
ReverseReduction: reverseReduction(text),
|
|
131
131
|
|
|
132
132
|
Standard: standard(text),
|