Gematria
Import
import { calculateGematria, reverseGematria } from 'kaabalah/gematria';Exports
How Gematria Works
Usage Example
Live example
Last updated
import { calculateGematria, reverseGematria } from 'kaabalah/gematria';Last updated
import { calculateGematria, reverseGematria } from 'kaabalah/gematria';
// Calculate gematria for a name
const result = calculateGematria('DAVID');
console.log(result.synthesis.originalSum); // Total value
console.log(result.vowels.originalSum); // Vowels value
console.log(result.consonants.originalSum); // Consonants value
// Find words with specific values
const matches = reverseGematria({
targetSynthesis: 25,
maxLength: 5
});