working rss feed to nostr publish

This commit is contained in:
2023-11-24 00:43:28 -05:00
parent 06edcb57ae
commit 88d2f9cfec
8396 changed files with 783105 additions and 0 deletions
+43
View File
@@ -0,0 +1,43 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Entry = void 0;
var hash_1 = require("../functional/hash");
var comparators_1 = require("../functional/comparators");
/**
* Entry for mapping.
*
* @author Jeongho Nam - https://github.com/samchon
*/
var Entry = /** @class */ (function () {
/**
* Intializer Constructor.
*
* @param first The first, key element.
* @param second The second, mapped element.
*/
function Entry(first, second) {
this.first = first;
this.second = second;
}
/**
* @inheritDoc
*/
Entry.prototype.equals = function (obj) {
return (0, comparators_1.equal_to)(this.first, obj.first);
};
/**
* @inheritDoc
*/
Entry.prototype.less = function (obj) {
return (0, comparators_1.less)(this.first, obj.first);
};
/**
* @inheritDoc
*/
Entry.prototype.hashCode = function () {
return (0, hash_1.hash)(this.first);
};
return Entry;
}());
exports.Entry = Entry;
//# sourceMappingURL=Entry.js.map