11 lines
215 B
JavaScript
11 lines
215 B
JavaScript
export function isLeaf(node) {
|
|
return node.field !== undefined;
|
|
}
|
|
|
|
/**
|
|
* A function used to process headerClassName params.
|
|
*/
|
|
|
|
/**
|
|
* The union type representing the [[GridColDef]] column header class type.
|
|
*/ |