UNPKG

@adaptabletools/adaptable-cjs

Version:

Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

7 lines (6 loc) 269 B
/** * Checks if value is a plain object, that is, an object created by the * Object constructor or one with a [[Prototype]] of null. * Drop-in replacement for lodash/isPlainObject. */ export default function isPlainObject(value: any): value is Record<string, any>;