Create a list from function call parameters with Ramda

In notebook:
Work Notes
Created at:
2019-04-07
Updated:
2019-04-07
Tags:
  const toList = R.unapply(R.identity)

console.log(toList('a', 'b'))
// => ['a', 'b']