Sign in
chromium
/
devtools
/
devtools-frontend
/
refs/heads/main
/
.
/
node_modules
/
rambda
/
src
/
tap.js
blob: 71233f6c7296a3c335d09f20fc63a6e143ff3bef [
file
] [
log
] [
blame
] [
edit
]
export
function
tap
(
fn
,
x
){
if
(
arguments
.
length
===
1
)
return
_x
=>
tap
(
fn
,
_x
)
fn
(
x
)
return
x
}