UNPKG

160 BPlain TextView Raw
1export const isObject = (value: any) =>
2 Object.prototype.toString.call(value) === '[object Object]';
3
4export interface ObjectMap<T> {
5 [k: string]: T;
6}