StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
StackGenVis/frontend/node_modules/inquirer/lib/utils/utils.js

26 lines
780 B

'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;
})
);
};