Currently undertaking the task of refining over 10,000 lines of CSS code. Instead of manually converting line by line, I aim to transform from this:
-webkit-transition: .1s linear all;
-moz-transition: .1s linear all;
transition: .1s linear all;
to this:
.transition(.1s linear all);
I am seeking a way to expedite this process using regex. Any suggestions would be greatly appreciated!
Thank you in advance!