I have the following regex: /\.([s]?[ac]ss)$/. The problem is, it matches .scss, .sass, .css, .ass. How would I make it not match .ass?
>Solution :
Also this will match .scss, .sass and .css only, it is very readable and self-explanatory
/\.(sc|sa|c)ss$/