You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Only put trailing semicolon when merging style attributes
This is a first draft that tries to maintain the same code behavior
without worrying too much about the code quality
* Update tests so they reflect the new code behavior
All style attributes that received a String won't generate
a trailing semicolon
* Improve merge trailing semicolon code
Check if String is not empty by checking if it its true ('' is false)
Get last character of the string using slice(-1)
Add semicolon if the last string character is not a semicolon
* Use array style indexing instead of `.slice` to get last character
0 commit comments