789 B
789 B
title, tags
| title | tags |
|---|---|
| isBrowser | browser,node,intermediate |
Determines if the current runtime environment is a browser so that front-end modules can run on the server (Node) without throwing errors.
- Use
Array.prototype.includes()on thetypeofvalues of bothwindowanddocument(globals usually only available in a browser environment unless they were explicitly defined), which will returntrueif one of them isundefined. typeofallows globals to be checked for existence without throwing aReferenceError.- If both of them are not
undefined, then the current environment is assumed to be a browser.
const isBrowser = () => ![typeof window, typeof document].includes('undefined');
isBrowser(); // true (browser)
isBrowser(); // false (Node)