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

20
node_modules/expo-router/build/utils/font.js generated vendored Normal file
View File

@@ -0,0 +1,20 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.convertTextStyleToRNTextStyle = convertTextStyleToRNTextStyle;
const react_native_1 = require("react-native");
function convertTextStyleToRNTextStyle(style) {
const flattenedStyle = react_native_1.StyleSheet.flatten(style);
if (!flattenedStyle) {
return undefined;
}
if ('fontWeight' in flattenedStyle) {
return {
...flattenedStyle,
fontWeight: typeof flattenedStyle.fontWeight === 'number'
? String(flattenedStyle.fontWeight)
: flattenedStyle.fontWeight,
};
}
return flattenedStyle;
}
//# sourceMappingURL=font.js.map