Delete utils/rm directory

This commit is contained in:
Yu Steven
2022-07-19 19:02:36 +08:00
committed by GitHub
parent 33cf048ef0
commit 79aec528f5
1653 changed files with 0 additions and 146883 deletions

View File

@@ -1,39 +0,0 @@
'use strict';
// A wrapper function that returns false if the address is not valid; used to
// avoid boilerplate checks for `if (!this.valid) { return false; }`
var falseIfInvalid = exports.falseIfInvalid = function (fn) {
return function () {
if (!this.valid) {
return false;
}
return fn.apply(this, arguments);
};
};
exports.isInSubnet = falseIfInvalid(function (address) {
if (this.subnetMask < address.subnetMask) {
return false;
}
if (this.mask(address.subnetMask) === address.mask()) {
return true;
}
return false;
});
exports.isCorrect = function (defaultBits) {
return falseIfInvalid(function () {
if (this.addressMinusSuffix !== this.correctForm()) {
return false;
}
if (this.subnetMask === defaultBits && !this.parsedSubnet) {
return true;
}
return this.parsedSubnet === String(this.subnetMask);
});
};