Submit
Path:
~
/
/
proc
/
self
/
root
/
usr
/
lib
/
node_modules
/
npm
/
node_modules
/
is-cidr
/
File Content:
index.js
"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);
Edit
Rename
Chmod
Delete
FILE
FOLDER
Name
Size
Permission
Action
LICENSE
1290 bytes
0644
README.md
1405 bytes
0644
index.js
325 bytes
0644
package.json
1827 bytes
0644
N4ST4R_ID | Naxtarrr