@snipsonian/core
Version:
Core/base reusable javascript code snippets
12 lines (9 loc) • 315 B
text/typescript
import isUndefined from './isUndefined';
/* true if the code is running in a browser, false if not (when e.g. running in node) */
export const IS_BROWSER = !isNodejs();
function isNodejs() {
if (typeof process !== 'undefined') {
return !isUndefined(process?.versions?.node);
}
return false;
}