UNPKG

unnestcss

Version:
17 lines 472 B
const browsers = [ [/Firefox\/(\d+\.\d+)/, 117], [/Edg\/(\d+\.\d+)/, 120], [/OPR\/(\d+\.\d+)/, 106], [/Version\/(\d+\.\d+).*Safari/, 17.2], [/Chrome\/(\d+\.\d+)/, 120], ]; export const isSupport = () => { for (const [regex, version] of browsers) { const match = navigator.userAgent.match(regex); if (match) { return Number(match[1]) >= version; } } return false; }; //# sourceMappingURL=is-support.js.map