if() Function Migrator
-
Fix a bug where
if(C, null, V)would be incorrectly migrated toif(sass(C): null)rather thanif(not sass(C): V). -
Migrate
if(C, V, null)toif(sass(C): V)rather thanif(sass(C): V; else: null). The extraelseclause was redundant.
See the full changelog for changes in earlier releases.