mirror of
https://github.com/koel/koel
synced 2024-12-20 09:33:23 +00:00
12 lines
457 B
TypeScript
12 lines
457 B
TypeScript
/**
|
|
* Check if AudioContext is supported by the current browser.
|
|
*/
|
|
export const isAudioContextSupported = process.env.NODE_ENV !== 'test'
|
|
|
|
/**
|
|
* Checks if the browser supports reading (and thus uploading) a whole directory.
|
|
*/
|
|
export const isDirectoryReadingSupported = window.DataTransferItem &&
|
|
typeof window.DataTransferItem.prototype.webkitGetAsEntry === 'function'
|
|
|
|
export const isFullscreenSupported = () => Boolean(document.fullscreenEnabled)
|