PATH: //opt/alt/alt-nodejs12/root/lib/node_modules/npm/node_modules.bundled/is-cidr
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 LICENSE
↓
X
📄 README.md
↓
X
📄 index.js
↓
X
📄 package.json
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: 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);
SIMPAN PERUBAHAN