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>
18 lines
564 B
JavaScript
18 lines
564 B
JavaScript
var INTERPOLATE = /{([^{]+?)}/g
|
|
|
|
module.exports = function(str, data) {
|
|
var tmpl = 'var __p=[],print=function(){__p.push.apply(__p,arguments);};' +
|
|
'with(obj||{}){__p.push(\'' +
|
|
str.replace(/\\/g, '\\\\')
|
|
.replace(/'/g, "\\'")
|
|
.replace(INTERPOLATE, function(match, code) {
|
|
return "'," + code.replace(/\\'/g, "'") + ",'"
|
|
})
|
|
.replace(/\r/g, '\\r')
|
|
.replace(/\n/g, '\\n')
|
|
.replace(/\t/g, '\\t')
|
|
+ "');}return __p.join('');"
|
|
var func = new Function('obj', tmpl)
|
|
return data ? func(data) : func
|
|
}
|