koel/resources/assets/js/utils/supports.ts
2022-07-19 13:20:13 +02:00

10 lines
377 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'