Trying to figure out Ramda here. Does Ramda have a method to turn arguments to a list? E.g:
R.argumentsToList(1)(2) => [1, 2]
The problem that I'm actually facing is that my function is passed 2 arguments and I need to work with both arguments, yet R.compose
only allows the rightmost function to work with multiple arguments. Turning my arguments to a list would allow me to bypass this - or would that be a bad approach?
Practical problem: I want to pass 2 strings into my function. Those should be turned into a merged object, e.g:
f('firstString', 'second') => {firstString: 'firstString', second: 'second'}
I know that I can use R.merge
and R.objOf
, but I don't know how to handle and work with the 2 arguments that are passed to the function.