isin validator

Validate an ISIN (International Securities Identification Number)

Options

Using with form field
The HTML attributes are used to set the validator options via the Declarative plugin
NameHTML attributeTypeDescription
messagedata-fv-isin___messageStringThe error message
Using the ES6 module
// You might need to change the importing path
import { isin } from '/vendors/@form-validation/cjs/validator-isin';
const result = isin().validate({
value: ...,
options: {
message: ...,
},
});
/*
result is an object of
{
valid: true or false,
message: The error message
}
*/
Using the npm package
  • Install the validator package:
$ npm install @form-validation/validator-isin
  • Use the isin validator:
import { isin } from '@form-validation/validator-isin';
const result = isin().validate({
value: ...,
options: {
message: ...,
},
});

Basic example

isin validator

NPM package example

The following snippet shows how to use the isin validator with the npm package:
import { isin } from '@form-validation/validator-isin';
const res1 = isin().validate({
value: 'US0378331005',
options: {
message: 'The value is not valid isin',
},
});
// res1.valid === true
const res2 = isin().validate({
value: 'AA0000XVGZA3',
options: {
message: 'The value is not valid isin',
},
});
// res2.valid === false

See also

Changelog

v2.0.0
  • Add the npm package