Sign in
chromium
/
devtools
/
devtools-frontend
/
795b8d034574da8737f2ee9ff4f94de6d000a9a4
/
.
/
node_modules
/
ramda
/
src
/
internal
/
_pipeP.js
blob: 3b79a052a94b6a56922144601df767f1d9efb5fb [
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
;