Files
30-seconds-of-code/test/isBrowser/isBrowser.js
2018-03-19 20:42:30 +00:00

2 lines
108 B
JavaScript

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