(decl)
| 24 | ] |
| 25 | |
| 26 | function hasGridTemplate(decl) { |
| 27 | return decl.parent.some( |
| 28 | i => i.prop === 'grid-template' || i.prop === 'grid-template-areas' |
| 29 | ) |
| 30 | } |
| 31 | |
| 32 | function hasRowsAndColumns(decl) { |
| 33 | let hasRows = decl.parent.some(i => i.prop === 'grid-template-rows') |
no outgoing calls
no test coverage detected
searching dependent graphs…