Always seeking pull requests for new languages!
git clone https://github.com/tristaaan/SayThisNumber.git
cd SayThisNumber
npm install
Step 0: Check the parsers list to make sure the language isn't already there.
- Write your number parser in
src/parsers/
and export your parse function which takes a number and returns the number parsed in the language. Be sure to support negative numbers and follow the ESLint rules. - Add the parser to
languages.js
with [language] as the key. Keep this list alphabetical. - Test it out, write tests if desired.
- Add your name to the authors list.
- Submit a pull request.