Skip to content

Variable: alphanumeric

ts
const alphanumeric: Validator<string>;

Alphanumeric validation / 字母数字校验

Example

ts
alphanumeric('abc123') // => { isValid: true, message: undefined }
alphanumeric('abc!') // => { isValid: false, message: 'Value must be alphanumeric / 必须为字母数字组合' }

Since

1.0.0

Released under the MIT License.