Is it possible to have regex with both g and s modifier?
I've tried
/abc/gs // throw error
new RegExp('abc', 'g', 's') // s is ignored
new RegExp('abc', 'gs') // throw error
new RegExp('abc', ['g', 's']) // throw error
smodifier in javascript regex