TelegramPWA/src/util/safePlay.ts
Alexander Zinchuk 3afcde3217 Initial commit
2021-04-09 14:11:51 +03:00

11 lines
220 B
TypeScript

import { DEBUG } from '../config';
export default (mediaEl: HTMLMediaElement) => {
mediaEl.play().catch((err) => {
if (DEBUG) {
// eslint-disable-next-line no-console
console.warn(err);
}
});
};