rtn validator
Validate a RTN (Routing transit number)
Options
Using with form field
Name | HTML attribute | Type | Description |
---|
message | data-fv-rtn___message | String | The error message |
Using the ES6 module
import { rtn } from '/vendors/@form-validation/cjs/validator-rtn';
const result = rtn().validate({
value: ...,
options: {
message: ...,
},
});
Using the npm package
- Install the validator package:
$ npm install @form-validation/validator-rtn
import { rtn } from '@form-validation/validator-rtn';
const result = rtn().validate({
value: ...,
options: {
message: ...,
},
});
Basic example
NPM package example
The following snippet shows how to use the rtn validator with the npm package:
import { rtn } from '@form-validation/validator-rtn';
const res1 = rtn().validate({
value: '011103093',
options: {
message: 'The value is not valid RTN',
},
});
const res2 = rtn().validate({
value: '054001726',
options: {
message: 'The value is not valid RTN',
},
});
See also
Changelog