Skip to content

Commit

Permalink
issue nodejs#48016 process.versions updated
Browse files Browse the repository at this point in the history
  • Loading branch information
xvisierra committed May 16, 2023
1 parent f36461d commit d9a73cf
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions doc/api/process.md
Original file line number Diff line number Diff line change
Expand Up @@ -3828,11 +3828,19 @@ Node.js and its dependencies. `process.versions.modules` indicates the current
ABI version, which is increased whenever a C++ API changes. Node.js will refuse
to load modules that were compiled against a different module ABI version.
# base64
• {Object} `base64` is a group of binary-to-text encoding schemes that represent binary data in sequences of 24 bits that can be represented by four 6-bit Base64 digits.
```mjs
import { versions } from 'node:process';

console.log(versions);
```
# cjs_module_lexer
• {Object} `cjs_module_lexer` is a very fast JS CommonJS module syntax lexer used to detect the most likely list of named exports of a CommonJS module.
```cjs
const { versions } = require('node:process');
Expand Down

0 comments on commit d9a73cf

Please sign in to comment.