2.2.0 • Published 5 years ago

@darthgregarious/joi-currency-code v2.2.0

Weekly downloads
15
License
MIT
Repository
github
Last release
5 years ago

💰 joi-currency-code

npm Build Status XO code style

A Joi validator that validates whether a given input is a valid currency code, according to ISO 4217.

Installation

npm install joi-currency-code

Usage

const Joi = require('joi-currency-code')(require('joi'));

const schema = Joi.object({
  code: Joi.string().currency()
});

Joi.validate({
  code: 'aud'
}, schema); // succeeds

Joi.validate({
  code: 'fake-currency'
}, schema); // fails with ValidationError

Contributing

  • git clone git@github.com:hugomd/joi-currency-code.git
  • npm install
  • Make your changes
  • Open a pull request and ask for review ✌️
  • Optional: use emoji in your commits 🔥

Related Repositories