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