Seeking assistance with extracting a string from a URL of an image using regular expressions and the match() function in JavaScript. The code works flawlessly on Chrome version 62, but encounters issues on older versions like Chrome 58. Here are the specific lines of code causing the problem:
// cloneURL = "/assets/images/bonhommeneige.png"
var cloneName = cloneURL.match('(?<=images/)(.*?)(?=.png)');
While Chrome v. 62 successfully returns "bonhommeneige", Chrome v. 58 displays an error message stating "Invalid regular expression". In need of insights on what might be incorrect with the regular expression pattern.