first commit

This commit is contained in:
2026-04-09 13:05:27 +02:00
commit 3bbd7d6413
3084 changed files with 84284 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
"use strict";
exports.__esModule = true;
var FormData = /** @class */ (function () {
function FormData() {
this._entries = [];
}
FormData.prototype.append = function (key, value, fileName) {
this._entries.push({ key: key, value: value, fileName: fileName });
};
return FormData;
}());
exports.FormData = FormData;
function getFormDataEntries(fd) {
return fd._entries;
}
exports.getFormDataEntries = getFormDataEntries;