Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.js « is-cidr « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b5a5026439913e2d8549c5f41a649db6fb78a4c6 (plain)
1
2
3
4
5
6
"use strict";
const cidrRegex = require("cidr-regex");

const isCidr = module.exports = string => cidrRegex({exact: true}).test(string);
isCidr.v4 = string => cidrRegex.v4({exact: true}).test(string);
isCidr.v6 = string => cidrRegex.v6({exact: true}).test(string);