mirror of
https://github.com/taixingyiji/openit.git
synced 2025-11-03 08:32:17 +00:00
7 lines
268 B
JavaScript
7 lines
268 B
JavaScript
exports.BITS = 32;
|
|
exports.GROUPS = 4;
|
|
|
|
exports.RE_ADDRESS = /^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/g;
|
|
|
|
exports.RE_SUBNET_STRING = /\/\d{1,2}$/;
|