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