Convert numbers to Hebrew words in Python and JavaScript.
pip install num2hebnpm install num2hebfrom 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.