Archived
Private
Public Access
1
0

Initial commit

This commit is contained in:
2022-09-04 12:45:01 +02:00
commit f4a01d6a69
11601 changed files with 4206660 additions and 0 deletions

28
node/TestCli/node_modules/inquirer/lib/utils/utils.js generated vendored Normal file
View File

@@ -0,0 +1,28 @@
'use strict';
const _ = {
isFunction: require('lodash/isFunction'),
};
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 (!_.isFunction(question[prop])) {
return of(question);
}
return from(
runAsync(question[prop])(answers).then((value) => {
question[prop] = value;
return question;
})
);
};