In JSS, which uses this plugin:
example: {
transition: 'var(--something, var(--fallback))'
}
gets converted to
.example-1-2-3 {
transition: var(--something, false(--fallback))
}
Namely, the fallback var is being converted to false.
This issue is similar to #112