d2/d2graph/grid.go

7 lines
165 B
Go
Raw Normal View History

2023-04-01 00:18:17 +00:00
package d2graph
func (obj *Object) IsGrid() bool {
return obj != nil && obj.Attributes != nil &&
2023-04-01 00:18:17 +00:00
(obj.Attributes.Rows != nil || obj.Attributes.Columns != nil)
}