Skip to content

Commit

Permalink
new dist
Browse files Browse the repository at this point in the history
  • Loading branch information
massimocandela committed Oct 22, 2023
1 parent 008fd6b commit 75bb2c7
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 15 deletions.
21 changes: 13 additions & 8 deletions dist/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@
"md5": "^2.3.0",
"moment": "^2.29.4",
"node-cleanup": "^2.1.2",
"nodemailer": "^6.9.6",
"nodemailer": "^6.9.7",
"path": "^0.12.7",
"restify": "github:massimocandela/node-restify",
"rpki-validator": "^2.13.1",
"rpki-validator": "^2.13.2",
"semver": "^7.5.4",
"syslog-client": "^1.1.1",
"uuid": "^9.0.1",
Expand Down
10 changes: 5 additions & 5 deletions dist/src/inputs/input.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,14 +156,14 @@ var Input = exports["default"] = /*#__PURE__*/_createClass(function Input(env) {
_defineProperty(this, "getMonitoredPrefixes", function () {
throw new Error('The method getMonitoredPrefixes MUST be implemented');
});
_defineProperty(this, "_filterIgnoreMorespecifics", function (prefix, includeIgnoredMorespecifics) {
return function (i) {
return includeIgnoredMorespecifics || !i.ignoreMorespecifics || _ipSub["default"]._isEqualPrefix(i.prefix, prefix); // last piece says "or it is not a more specific"
};
_defineProperty(this, "_filterIgnoreMorespecifics", function (i, prefix, includeIgnoredMorespecifics) {
return includeIgnoredMorespecifics || !i.ignoreMorespecifics || _ipSub["default"]._isEqualPrefix(i.prefix, prefix); // last piece says "or it is not a more specific"
});
_defineProperty(this, "getMoreSpecificMatches", function (prefix) {
var includeIgnoredMorespecifics = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
return _this.index.getMatch(prefix, false).filter(_this._filterIgnoreMorespecifics(prefix, includeIgnoredMorespecifics));
return _this.index.getMatch(prefix, false).filter(function (i) {
return _this._filterIgnoreMorespecifics(i, prefix, includeIgnoredMorespecifics);
});
});
_defineProperty(this, "getMonitoredASns", function () {
throw new Error('The method getMonitoredASns MUST be implemented');
Expand Down

0 comments on commit 75bb2c7

Please sign in to comment.