1.0.0 • Published 5 years ago

@lemoncode/fonk-iban-validator v1.0.0

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

fonk-iban-validator

CircleCI NPM Version bundle-size

This is a fonk microlibrary that brings validation capabilities to:

  • Validate if a field of a form is a valid IBAN

How to add it to an existing form validation schema:

We have the following form model:

const myFormValues = {
  account: 'ES7921000813610123456789',
}

We can add a iban validation to the myFormValues

import { iban } from '@lemoncode/fonk-iban-validator';

const validationSchema = {
  field: {
    account: [iban.validator],
  },
};

You can customize the error message displayed in two ways:

  • Globally, replace the default error message in all validationSchemas (e.g. porting to spanish):
import { iban } from '@lemoncode/fonk-iban-validator';

iban.setErrorMessage('El campo debe tener un formato IBAN válido');
  • Locally just override the error message for this validationSchema:
import { iban } from '@lemoncode/fonk-iban-validator';

const validationSchema = {
  field: {
    account: [
      {
        validator: iban.validator,
        message: 'Field should have a valid IBAN format',
      },
    ],
  },
};

Please, refer to fonk to know more.

License

MIT

About Basefactor + Lemoncode

We are an innovating team of Javascript experts, passionate about turning your ideas into robust products.

Basefactor, consultancy by Lemoncode provides consultancy and coaching services.

Lemoncode provides training services.

For the LATAM/Spanish audience we are running an Online Front End Master degree, more info: http://lemoncode.net/master-frontend