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>
22 lines
479 B
JavaScript
22 lines
479 B
JavaScript
'use strict'
|
|
|
|
const _global =
|
|
typeof self !== 'undefined'
|
|
? self
|
|
: typeof window !== 'undefined'
|
|
? window
|
|
: /* otherwise */ undefined
|
|
|
|
if (!_global) {
|
|
throw new Error(
|
|
`Unable to find global scope. Are you sure this is running in the browser?`
|
|
)
|
|
}
|
|
|
|
if (!_global.AbortController) {
|
|
throw new Error(
|
|
`Could not find "AbortController" in the global scope. You need to polyfill it first`
|
|
)
|
|
}
|
|
|
|
module.exports.AbortController = _global.AbortController |