s4s-packager / src /p4 /environment.js
soiz1's picture
Upload 225 files
7aec436 verified
// Legacy Edge supports all the syntax we use but not TextDecoder and TextEncoder
export const isSupported = typeof TextDecoder === 'function';
export const isSafari = navigator.vendor === 'Apple Computer, Inc.';
export const isChromeOS = navigator.userAgent.includes('CrOS');
export const isStandalone = !!process.env.STANDALONE;
export const version = process.env.VERSION;