Sign in
chromium
/
devtools
/
devtools-frontend
/
d5a3755f19aa248cffbcf61f1628362aaa6c0377
/
.
/
node_modules
/
ramda
/
src
/
internal
/
_pipeP.js
blob: 3e2a9d60ec72cb7e6a4ae34d6e0d0d49b5cb9844 [
file
] [
log
] [
blame
]
function
_pipeP
(
f
,
g
)
{
return
function
()
{
var
ctx
=
this
;
return
f
.
apply
(
ctx
,
arguments
).
then
(
function
(
x
)
{
return
g
.
call
(
ctx
,
x
);
});
};
}
module
.
exports
=
_pipeP
;