Add class utils

This commit is contained in:
Leonid Logvinov
2017-12-01 22:44:06 -06:00
parent 0fc356740a
commit 865ee090c8

View File

@@ -0,0 +1,17 @@
import * as _ from 'lodash';
export const classUtils = {
bindAll(self: any, exclude: string[] = ['contructor'], thisArg?: any): void {
for (const key of Object.getOwnPropertyNames(self)) {
const val = self[key];
if (!_.includes(exclude, key)) {
if (_.isFunction(val)) {
self[key] = val.bind(thisArg || self);
} else if (_.isObject(val)) {
classUtils.bindAll(val, exclude, self);
}
}
}
return self;
},
};