MCPcopy
hub / github.com/postcss/autoprefixer / hasRowsAndColumns

Function hasRowsAndColumns

lib/processor.js:32–36  ·  view source on GitHub ↗
(decl)

Source from the content-addressed store, hash-verified

30}
31
32function hasRowsAndColumns(decl) {
33 let hasRows = decl.parent.some(i => i.prop === 'grid-template-rows')
34 let hasColumns = decl.parent.some(i => i.prop === 'grid-template-columns')
35 return hasRows && hasColumns
36}
37
38function insideGrid(decl) {
39 return decl.parent.nodes.some(node => {

Callers 1

addMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…