export default function rcurry(callable, arity) {
    return function () {
        const args = Array.prototype.slice.call(arguments, 0);

        const fn = rbind(callable, this, args);