blob: a1d462f45fdf5e4d94ee8a3a3b857e7ce66d5f77 [file] [log] [blame] [edit]
export function unapply(fn){
return function (...args){
return fn.call(this, args)
}
}