Converts a selected block of css to js format. Good, for example, for copying styling from Chrome dev tools to a React CSS object.
Highlight a some css like
text-align: center;
display: inline-flex;
Open your command pallete (cmd + shift + p on mac) and run the Convert CSS
command. Hopefully you'll get some js formatted css:
textAlign: 'center',
display: 'inline-flex',