Marketplace móvil para negocios locales mexicanos. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React Web) - apps/mobile (Expo/React Native) - apps/mcp-server (Claude MCP Server) - apps/whatsapp-service (WhatsApp Business API) - database/ (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
15 lines
530 B
JavaScript
15 lines
530 B
JavaScript
/*
|
|
* getAbsoluteFSPath
|
|
* @return {string} When run in NodeJS env, returns the absolute path to the current directory
|
|
* When run outside of NodeJS, will return an error message
|
|
*/
|
|
const getAbsoluteFSPath = function () {
|
|
// detect whether we are running in a browser or nodejs
|
|
if (typeof module !== "undefined" && module.exports) {
|
|
return require("path").resolve(__dirname)
|
|
}
|
|
throw new Error('getAbsoluteFSPath can only be called within a Nodejs environment');
|
|
}
|
|
|
|
module.exports = getAbsoluteFSPath
|