Initial commit
This commit is contained in:
commit
d7af9332c1
1674 changed files with 119641 additions and 0 deletions
26
node_modules/validator/lib/isMACAddress.js
generated
vendored
Normal file
26
node_modules/validator/lib/isMACAddress.js
generated
vendored
Normal file
|
@ -0,0 +1,26 @@
|
|||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = isMACAddress;
|
||||
|
||||
var _assertString = _interopRequireDefault(require("./util/assertString"));
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
var macAddress = /^([0-9a-fA-F][0-9a-fA-F]:){5}([0-9a-fA-F][0-9a-fA-F])$/;
|
||||
var macAddressNoColons = /^([0-9a-fA-F]){12}$/;
|
||||
|
||||
function isMACAddress(str, options) {
|
||||
(0, _assertString.default)(str);
|
||||
|
||||
if (options && options.no_colons) {
|
||||
return macAddressNoColons.test(str);
|
||||
}
|
||||
|
||||
return macAddress.test(str);
|
||||
}
|
||||
|
||||
module.exports = exports.default;
|
||||
module.exports.default = exports.default;
|
Loading…
Add table
Add a link
Reference in a new issue