View original Gist on GitHub
export const partial = (fn, arg) => { return (...rest) => { return fn(arg, ...rest) } }