Sign in
chromium
/
devtools
/
devtools-frontend
/
5dfb21679dc5d9affc8a50122a3e245ff69f1d08
/
.
/
node_modules
/
rambda
/
src
/
unapply.js
blob: a1d462f45fdf5e4d94ee8a3a3b857e7ce66d5f77 [
file
]
export
function
unapply
(
fn
){
return
function
(...
args
){
return
fn
.
call
(
this
,
args
)
}
}