Lines Matching refs:bind
19 // `uncurryThis` is equivalent to `func => Function.prototype.call.bind(func)`.
20 // It is using `bind.bind(call)` to avoid using `Function.prototype.bind`
22 const { apply, bind, call } = Function.prototype;
23 const uncurryThis = bind.bind(call);
26 // `applyBind` is equivalent to `func => Function.prototype.apply.bind(func)`.
27 // It is using `bind.bind(apply)` to avoid using `Function.prototype.bind`
29 const applyBind = bind.bind(apply);
106 desc.value = value.bind(src);