Skip to main content
Module

x/ramda/internal/_pipe.js

:ram: Practical functional Javascript
Very Popular
Go to Latest
File
export default function _pipe(f, g) { return function() { return g.call(this, f.apply(this, arguments)); };}