我知道有一些闭包是为了防止属性在其范围之外被访问,但我很想知道是否有一种方法可以注入一个嵌入在一个被深深吸引的对象中的属性的方法。通过匿名函数?
function() {
...
}({
421: ...
420: [function(t, e, n) {
var o = [].slice;
e.exports = function(t, e) {
//insert code here
"string" == typeof e && (e = t[e]);
if ("function" != typeof e)
throw new Error("bind() requires a function");
var n = o.call(arguments, 2);
return function() {
return e.apply(t, n.concat(o.call(arguments)))
}
}
}
422: ...
})