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

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