You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The text was updated successfully, but these errors were encountered:
mces1236
changed the title
Ipv6 is giving single strings("1", "2") without dot as valid ipV6address.
Ip is giving single strings("1", "2") without dot as valid ipV6address.
Aug 14, 2018
ip.isV6Format("1") is returning true.
/^(::)?(((\d{1,3}.){3}(\d{1,3}){1})?([0-9a-f]){0,4}:{0,2}){1,8}(::)?$/.test("1")
true
/^(::)?(((\d{1,3}.){3}(\d{1,3}){1})?([0-9a-f]){0,4}:{0,2}){1,8}(::)?$/.test("12")
true
/^(::)?(((\d{1,3}.){3}(\d{1,3}){1})?([0-9a-f]){0,4}:{0,2}){1,8}(::)?$/.test("123")
true
/^(::)?(((\d{1,3}.){3}(\d{1,3}){1})?([0-9a-f]){0,4}:{0,2}){1,8}(::)?$/.test("1234")
true
The text was updated successfully, but these errors were encountered: