Skip to content

Variable: ipv6

ts
const ipv6: Validator<string>;

IPv6 validation / IPv6 验证

Example

ts
ipv6('::1') // => { isValid: true, message: undefined }
ipv6('not-an-ip') // => { isValid: false, message: 'Invalid IPv6 address / IPv6地址格式无效' }

Since

1.0.0

Released under the MIT License.