Skip to main content
Module

x/rambda/source/applyTo.js

Faster and smaller alternative to Ramda
Go to Latest
File
export function applyTo(input, fn){ if (arguments.length === 1){ return _fn => applyTo(input, _fn) }
return fn(input)}