Files
30-seconds-of-code/test/isBrowserTabFocused/isBrowserTabFocused.js
2018-04-15 19:18:44 +03:00

2 lines
89 B
JavaScript

const isBrowserTabFocused = () => !document.hidden;
module.exports = isBrowserTabFocused;