isFirefox.js 104 B

12
  1. const isFF = typeof navigator === 'object' && /Firefox/i.test(navigator.userAgent);
  2. export default isFF;