astro-ghostcms/.pnpm-store/v3/files/f3/d05d4e12a1aa1571cfa9f2015f1...

20 lines
405 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
let propertiesWithoutUnits
if (process.env.NODE_ENV !== 'production') {
propertiesWithoutUnits = [
'aspectRatio',
'elevation',
'flexGrow',
'flexShrink',
'opacity',
'shadowOpacity',
'zIndex',
]
}
const devPropertiesWithUnitsRegExp =
propertiesWithoutUnits != null
? new RegExp(propertiesWithoutUnits.join('|'))
: null
export default devPropertiesWithUnitsRegExp