Spaces:
Running
Running
File size: 326 Bytes
f2bee8a |
1 2 3 4 |
export const isMobile = typeof window !== 'undefined' && 'ontouchstart' in window;
export const clipboardSupported = typeof navigator !== 'undefined' && navigator.clipboard && navigator.clipboard.write;
export const mediaRecorderSupported = typeof MediaRecorder !== 'undefined' && MediaRecorder.isTypeSupported('video/webm');
|