I have a string.replace() function that uses a regex lookbehind. 
myString.replace(/(?<!\\)'/gi, '"')
However I see that this feature has limited browser support at this time. https://caniuse.com/#feat=js-regexp-lookbehind
Is there a means to use javascript to test a user's browser's support for this feature?
Something like the CSS.supports() function?
 
     
    