Repository URL to install this package:
|
Version:
3.1.7 ▾
|
joplin
/
usr
/
lib
/
joplin
/
resources
/
app
/
node_modules
/
css-to-react-native
/
src
/
devPropertiesWithoutUnitsRegExp.js
|
|---|
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