PHP 8.1.33
Preview: index.js Size: 497 B
//lib/node_modules/npm/node_modules/cidr-regex/index.js

"use strict";

const ipRegex = require("ip-regex");

const v4 = ipRegex.v4().source + "\\/(3[0-2]|[12]?[0-9])";
const v6 = ipRegex.v6().source + "\\/(12[0-8]|1[01][0-9]|[1-9]?[0-9])";

const cidr = module.exports = opts => opts && opts.exact ?
  new RegExp(`(?:^${v4}$)|(?:^${v6}$)`) :
  new RegExp(`(?:${v4})|(?:${v6})`, "g");

cidr.v4 = opts => opts && opts.exact ? new RegExp(`^${v4}$`) : new RegExp(v4, "g");
cidr.v6 = opts => opts && opts.exact ? new RegExp(`^${v6}$`) : new RegExp(v6, "g");

Directory Contents

Dirs: 0 × Files: 4

Name Size Perms Modified Actions
497 B lrw-r--r-- 2021-03-10 14:36:38
Edit Download
1.26 KB lrw-r--r-- 2021-03-10 14:36:38
Edit Download
1.84 KB lrw-r--r-- 2021-03-10 14:36:38
Edit Download
1.76 KB lrw-r--r-- 2021-03-10 14:36:38
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).