first commit

This commit is contained in:
2026-03-10 16:18:05 +00:00
commit 11f9c069b5
31635 changed files with 3187747 additions and 0 deletions

19
node_modules/expo-router/build/rsc/router/fetch.js generated vendored Normal file
View File

@@ -0,0 +1,19 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.fetch = fetch;
const fetch_1 = require("expo/fetch");
const errors_1 = require("./errors");
async function fetch(input, init) {
try {
return await (0, fetch_1.fetch)(input, init);
}
catch (error) {
if (error instanceof Error) {
if (error.message.match(/(Network request failed|fetch failed): (The network connection was lost|Could not connect to the server)/)) {
throw new errors_1.NetworkError(error.message, input);
}
}
throw error;
}
}
//# sourceMappingURL=fetch.js.map