Prepare repository for merge
This commit is contained in:
24
javascript/snippets/is-node.md
Normal file
24
javascript/snippets/is-node.md
Normal file
@ -0,0 +1,24 @@
|
||||
---
|
||||
title: Environment is Node.js
|
||||
type: snippet
|
||||
tags: [node]
|
||||
cover: cloudy-rock-formation
|
||||
dateModified: 2021-04-02T11:45:13+03:00
|
||||
---
|
||||
|
||||
Determines if the current runtime environment is Node.js.
|
||||
|
||||
- Use the `process` global object that provides information about the current Node.js process.
|
||||
- Check if `process`, `process.versions` and `process.versions.node` are defined.
|
||||
|
||||
```js
|
||||
const isNode = () =>
|
||||
typeof process !== 'undefined' &&
|
||||
!!process.versions &&
|
||||
!!process.versions.node;
|
||||
```
|
||||
|
||||
```js
|
||||
isNode(); // true (Node)
|
||||
isNode(); // false (browser)
|
||||
```
|
||||
Reference in New Issue
Block a user