UNPKG
0216tool_xiaoye
Version:
latest (1.2.0)
1.2.0
1.1.0
1.0.0
叶永洁自定义工具函数库
0216tool_xiaoye
/
src
/
function
/
bind.js
7 lines
•
265 B
JavaScript
View Raw
1
2
3
4
5
6
7
import
{call}
from
'./call'
export
function
bind
(
fn,obj,...args
){
return
(
...args2
) =>
{
//返回一个函数,并且调用该函数执行时,旧函数自动触发调用,参数列表为args+args2
call
(fn,obj,...args,...args2) } }