summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/is-cidr/index.js
blob: 3eaf906c3542e7f43d33a3d309b47648eb202469 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
"use strict";
const cidrRegex = require("cidr-regex");
const re4 = cidrRegex.v4({exact: true});
const re6 = cidrRegex.v6({exact: true});

const isCidr = module.exports = str => {
  if (re4.test(str)) return 4;
  if (re6.test(str)) return 6;
  return 0;
};

isCidr.v4 = str => re4.test(str);
isCidr.v6 = str => re6.test(str);