UNPKG

201 BJavaScriptView Raw
1export function bindAll(fns, context) {
2 fns.forEach(function (fn) {
3 if (!context[fn]) {
4 return;
5 }
6
7 context[fn] = context[fn].bind(context);
8 });
9}
10//# sourceMappingURL=event.js.map
\No newline at end of file