JavaScript Regex Single Line

//s Flag 
// replace . with [\s\S] ad ex.

/<!--(.*?)-->/gs ->>>>> /<!--([\s\S]*?)-->/g

//or

/<!--(.*?)-->/gs ->>>>> /<!--[\s\S]([\s\S]*?)[\s\S]-->/g
Strange Shrew