Is there any built-in Ramda function to retrieve the value giving the path as a string? Like:
R.path('a.b', {a: {b: 2}}); // I want to get 2
I know that this is possible with path
by using an array, like:
R.path(['a', 'b'], {a: {b: 2}});
I can split the path by .
and then use it, but before doing it I'd like to know if there is a function already available that works like lodash.get.