isin validator
Validate an ISIN (International Securities Identification Number)
Options
Using with form field
Name | HTML attribute | Type | Description |
---|
message | data-fv-isin___message | String | The error message |
Using with ES6 module
import isin from 'formvalidation/dist/es6/validators/isin';
const result = isin().validate({
value: ...,
options: {
message: ...,
},
});
Basic example
ES6 Module Example
The following snippet shows how to use the isin validator with ES6 module:
import isin from 'formvalidation/dist/es6/validators/isin';
const res1 = isin().validate({
value: 'US0378331005',
options: {
message: 'The value is not valid isin',
},
});
const res2 = isin().validate({
value: 'AA0000XVGZA3',
options: {
message: 'The value is not valid isin',
},
});
See also