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