This commit is contained in:
2024-03-22 03:47:51 +05:30
parent 8bcf3d211e
commit 89819f6fe2
28440 changed files with 3211033 additions and 2 deletions

26
node_modules/feed/lib/feed.js generated vendored Normal file
View File

@@ -0,0 +1,26 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Feed = void 0;
var atom1_1 = require("./atom1");
var json_1 = require("./json");
var rss2_1 = require("./rss2");
var Feed = (function () {
function Feed(options) {
var _this = this;
this.items = [];
this.categories = [];
this.contributors = [];
this.extensions = [];
this.addItem = function (item) { return _this.items.push(item); };
this.addCategory = function (category) { return _this.categories.push(category); };
this.addContributor = function (contributor) { return _this.contributors.push(contributor); };
this.addExtension = function (extension) { return _this.extensions.push(extension); };
this.atom1 = function () { return atom1_1.default(_this); };
this.rss2 = function () { return rss2_1.default(_this); };
this.json1 = function () { return json_1.default(_this); };
this.options = options;
}
return Feed;
}());
exports.Feed = Feed;
//# sourceMappingURL=feed.js.map