FunctionProject/backend/assets/functions/functionObject.js

29 lines
1.6 KiB
JavaScript
Raw Normal View History

const { randomNumberOutput } = require('./main/randomNumber');
const { convertArabicToRomanOutput, convertRomanToArabicOutput } = require('./main/convertRomanArabicNumbers');
const { convertDistanceOutput } = require('./main/convertDistance');
const { convertTemperatureOutput } = require('./main/convertTemperature');
const { armstrongNumberOutput } = require('./main/armstrongNumber');
const { weatherRequestOutput } = require('./main/weatherRequest');
2020-03-19 19:49:43 +01:00
const { convertCurrencyOutput } = require('./main/convertCurrency');
2020-03-19 21:46:54 +01:00
const { calculateAgeOutput } = require('./main/calculateAge');
const { heapAlgorithmOutput } = require('./main/heapAlgorithm');
const functionObject = {
randomNumber : randomNumberOutput,
convertArabicToRoman: convertArabicToRomanOutput,
convertRomanToArabic: convertRomanToArabicOutput,
convertDistance : convertDistanceOutput,
convertTemperature : convertTemperatureOutput,
armstrongNumber : armstrongNumberOutput,
2020-03-19 19:49:43 +01:00
weatherRequest : weatherRequestOutput,
2020-03-19 21:46:54 +01:00
convertCurrency : convertCurrencyOutput,
calculateAge : calculateAgeOutput,
heapAlgorithm : heapAlgorithmOutput
};
// Choisi la fonction à exécuter
function functionToExecute(option) {
return functionObject[option];
}
module.exports = functionToExecute;