Sign in
chromium
/
devtools
/
devtools-frontend
/
bedbd4f3fe201caedff255ae97fdf875e13063f8
/
.
/
node_modules
/
ramda
/
es
/
internal
/
_pipe.js
blob: 01fb7772366772a10c22467b195829e1e86fb20c [
file
]
export
default
function
_pipe
(
f
,
g
)
{
return
function
()
{
return
g
.
call
(
this
,
f
.
apply
(
this
,
arguments
));
};
}