Sign in
chromium
/
external
/
github.com
/
SeleniumHQ
/
selenium
/
refs/heads/api-docs-4.30.0-all
/
.
/
node_modules
/
rambda
/
src
/
apply.js
blob: 291a66a9377943b2ec0d91b1ed5760b5731f1281 [
file
] [
log
] [
blame
] [
edit
]
export
function
apply
(
fn
,
args
){
if
(
arguments
.
length
===
1
){
return
_args
=>
apply
(
fn
,
_args
)
}
return
fn
.
apply
(
this
,
args
)
}