Looks like it is not first question about look-behind, but I didn't find an answer.
Javascript has no (positive|negative)look-behind requests.
I need a regular expression that match *.scss file name, but didn't match the names like *.h.scss. With look-behind request is looks like:
/(?<!(\.h))\.scss$/
How can I do this in javascript? I need this regular expression for webpack rules "test" parameter, so the javascript regex required only.