Convert data-first function to data-last.
a data-first function
Rest
a data-last function
const powE = partial(Math.pow)(Math.E)powE(42) === Math.pow(42, Math.E) Copy
const powE = partial(Math.pow)(Math.E)powE(42) === Math.pow(42, Math.E)
Generated using TypeDoc
Convert data-first function to data-last.