Suppose I have an object with a collection of functions, as shown below:
F.deltas = {
"img": function (k, toff) {...},
"haspect": function (k) {...}
};
I am curious why it is not possible to apply the bind() method to them, like this:
F.deltas["img"].bind(this);