Version: 0.0.10.0.20.0.31.0.01.0.11.1.01.2.01.3.01.4.01.5.01.6.0
export const isObject = (value: any) =>
Object.prototype.toString.call(value) === '[object Object]';
export interface ObjectMap<T> {
[k: string]: T;
}