Sign in
◑
Theme
chromium
/
devtools
/
devtools-frontend
/
11010e69b4e87fbc1d60cdc0f9ac2b200cd8c75f
/
.
/
node_modules
/
rambda
/
src
/
apply.js
blob: 291a66a9377943b2ec0d91b1ed5760b5731f1281 [
file
]
export
function
apply
(
fn
,
args
){
if
(
arguments
.
length
===
1
){
return
_args
=>
apply
(
fn
,
_args
)
}
return
fn
.
apply
(
this
,
args
)
}