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

16
node_modules/@expo/image-utils/build/env.js generated vendored Normal file
View File

@@ -0,0 +1,16 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.env = void 0;
const getenv_1 = require("getenv");
class Env {
/** Enable image utils related debugging messages */
get EXPO_IMAGE_UTILS_DEBUG() {
return (0, getenv_1.boolish)('EXPO_IMAGE_UTILS_DEBUG', false);
}
/** Disable all Sharp related functionality. */
get EXPO_IMAGE_UTILS_NO_SHARP() {
return (0, getenv_1.boolish)('EXPO_IMAGE_UTILS_NO_SHARP', false);
}
}
exports.env = new Env();
//# sourceMappingURL=env.js.map