export class Utils { static isDefined(obj) { return typeof obj !== 'undefined' } static isFunction(obj) { return typeof obj === 'function'; } }