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

25
node_modules/@expo/router-server/build/utils/debug.js generated vendored Normal file
View File

@@ -0,0 +1,25 @@
"use strict";
/**
* Copyright © 2025 650 Industries.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.createDebug = createDebug;
/**
* Creates a debug logger that is excluded from production bundles.
*
* In development, it uses the `debug` package for namespaced logging.
*
* In production, it returns a no-op function to avoid bundling `debug`. This is useful for SSR
* when we bundle `@expo/router-server/node/render.js`, and RSC when we bundle
* `@expo/router-server/build/rsc/middleware.js`
*/
function createDebug(namespace) {
if (__DEV__) {
return require('debug')(namespace);
}
return () => { };
}
//# sourceMappingURL=debug.js.map