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>
29 lines
850 B
JavaScript
29 lines
850 B
JavaScript
'use strict';
|
|
|
|
function emptyScalarPosition(offset, before, pos) {
|
|
if (before) {
|
|
pos ?? (pos = before.length);
|
|
for (let i = pos - 1; i >= 0; --i) {
|
|
let st = before[i];
|
|
switch (st.type) {
|
|
case 'space':
|
|
case 'comment':
|
|
case 'newline':
|
|
offset -= st.source.length;
|
|
continue;
|
|
}
|
|
// Technically, an empty scalar is immediately after the last non-empty
|
|
// node, but it's more useful to place it after any whitespace.
|
|
st = before[++i];
|
|
while (st?.type === 'space') {
|
|
offset += st.source.length;
|
|
st = before[++i];
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
return offset;
|
|
}
|
|
|
|
exports.emptyScalarPosition = emptyScalarPosition;
|