Convert an integer from 1 to 1000, inclusive, to it's grammatically correct English phrase.
npm install --save signal-ai-code-challenge
const numberToWords = require('signal-ai-code-challenge');
console.log(numberToWords(1));
// result "One"
console.log(numberToWords(151));
// result "One Hundred and Fifty-One"
To start development, first install npm dependencies
npm install
To run tests
npm run test