Check the browser compatibility of your code
According to MDN, Safari did not support `randomUUID` until 15.4 (https://developer.mozilla.org/en-US/docs/Web/API/Crypto/randomUUID). eslint config: ``` { "plugins": [ "compat" ], "extends": [ "plugin:compat/recommended" ] } ``` browserlist in package.json: ``` "browserslist": { "production": [ "safari 14" ], "development": [ "last 1 chrome version", "last 1 firefox version", "last 1 safari version" ] } ``` Code being checked: ``` crypto.randomUUID(); ``` No warning is raised on that code while it in fact does throw an error in Safari 14. Other things unsupported in Safari 14 (for example `structuredClone`) are properly raised so the config is not wrong.
This issue appears to be discussing a feature request or bug report related to the repository. Based on the content, it seems to be still under discussion. The issue was opened by aczekajski and has received 0 comments.