joi-currency-code

3.0.2 • Public • Published

💰 joi-currency-code

npm 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').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

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

Readme

Keywords

none

Package Sidebar

Install

npm i joi-currency-code

Weekly Downloads

493

Version

3.0.2

License

MIT

Unpacked Size

2.72 kB

Total Files

4

Last publish

Collaborators

  • hugomd