Skip to main content
Module

x/rambda/source/apply.js

Faster and smaller alternative to Ramda
Go to Latest
File
export function apply(fn, args) { if (arguments.length === 1) { return _args => apply(fn, _args) }
return fn.apply(this, args)}