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>
26 lines
767 B
JavaScript
26 lines
767 B
JavaScript
'use strict';
|
|
const { from, of } = require('rxjs');
|
|
const runAsync = require('run-async');
|
|
|
|
/**
|
|
* Resolve a question property value if it is passed as a function.
|
|
* This method will overwrite the property on the question object with the received value.
|
|
* @param {Object} question - Question object
|
|
* @param {String} prop - Property to fetch name
|
|
* @param {Object} answers - Answers object
|
|
* @return {Rx.Observable} - Observable emitting once value is known
|
|
*/
|
|
|
|
exports.fetchAsyncQuestionProperty = function (question, prop, answers) {
|
|
if (typeof question[prop] !== 'function') {
|
|
return of(question);
|
|
}
|
|
|
|
return from(
|
|
runAsync(question[prop])(answers).then((value) => {
|
|
question[prop] = value;
|
|
return question;
|
|
})
|
|
);
|
|
};
|