404

[ Avaa Bypassed ]




Upload:

Command:

botdev@3.144.127.26: ~ $
'use strict';
var _ = {
  isFunction: require('lodash/isFunction'),
};
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;
    })
  );
};

Filemanager

Name Type Size Permission Actions
events.js File 1.4 KB 0644
incrementListIndex.js File 481 B 0644
paginator.js File 2.09 KB 0644
readline.js File 1.16 KB 0644
screen-manager.js File 3.83 KB 0644
utils.js File 813 B 0644