A Joi validator that validates whether a given input is a valid currency code, according to ISO 4217
npm install joi-currency-code 
> A Joi validator that validates whether a given input is a valid currency code, according to ISO 4217.
``javascript`
npm install joi-currency-code
`javascript
const Joi = require('joi').extend(require('joi-currency-code'));
const schema = Joi.object({
code: Joi.string().currency()
});
Joi.validate({
code: 'aud'
}, schema); // succeeds
Joi.validate({
code: 'fake-currency'
}, schema); // fails with ValidationError
`
* git clone git@github.com:hugomd/joi-currency-code.gitnpm install
*
* Make your changes
* Open a pull request and ask for review ✌️
* Optional: use emoji in your commits 🔥