This commit is contained in:
Joeri Exelmans 2025-05-11 00:30:03 +02:00
parent 29c7b6af61
commit dd35e2b577

View file

@ -22,5 +22,5 @@ export const apply = input => fun => {
const funValue = getInst(fun); const funValue = getInst(fun);
const outputValue = funValue(inputValue); const outputValue = funValue(inputValue);
return newDynamic(outputValue, outputType); return newDynamic(outputValue)(outputType);
}; };