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)
}