Convert numbers to Hebrew words in Python and JavaScript.
pip install num2heb
npm install num2heb
from num2heb import number_to_words
result = number_to_words(123)
print(result) # Output: "מאה עשרים ושלושה"
const numberToWords = require("num2heb");
const result = numberToWords(123);
console.log(result); // Output: "מאה עשרים ושלושה"
import numberToWords from "num2heb";
const result: string = numberToWords(123);
console.log(result); // Output: "מאה עשרים ושלושה"
If you would like to contribute to this package, please fork the repository and submit a pull request.
This project is licensed under the MIT License - see the LICENSE file for details.