Files
30-seconds-of-code/test/isBrowser/isBrowser.js
2018-08-02 13:49:33 +03:00

3 lines
109 B
JavaScript

const isBrowser = () => ![typeof window, typeof document].includes('undefined');
module.exports = isBrowser;