Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
data
/
trash
/
vhost_www.bachtale.com_1719306535
/
htdocs
/
node_modules
/
inquirer
/
lib
/
utils
/
/srv/data/trash/vhost_www.bachtale.com_1719306535/htdocs/node_modules/inquirer/lib/utils/utils.js
'use strict'; var _ = require('lodash'); var { from, of } = require('rxjs'); var 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 (!_.isFunction(question[prop])) { return of(question); } return from( runAsync(question[prop])(answers).then(value => { question[prop] = value; return question; }) ); };