Sign in
chromium
/
devtools
/
devtools-frontend
/
bedbd4f3fe201caedff255ae97fdf875e13063f8
/
.
/
node_modules
/
ramda
/
es
/
internal
/
_pipeP.js
blob: a6247647741cde5703f16d87e335208337dbd922 [
file
]
export
default
function
_pipeP
(
f
,
g
)
{
return
function
()
{
var
ctx
=
this
;
return
f
.
apply
(
ctx
,
arguments
).
then
(
function
(
x
)
{
return
g
.
call
(
ctx
,
x
);
});
};
}