Sign in
chromium
/
devtools
/
devtools-frontend
/
ec00a13ce62ddc9f5697a4e4d30dfcafaacd9fc2
/
.
/
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
);
});
};
}