Pointed vs. Point-Free JavaScript

const elementToCursorMoveAction = R.converge(
R.unapply(editorCursorMoveAction),
[selectSelectionStart, selectSelectionEnd]
);
point-free-action.js
const elementToCursorMoveAction = e =>
editorCursorMoveAction([selectSelectionStart(e), selectSelectionEnd(e)]);
pointed-action.js