Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuy Bedford <guybedford@gmail.com>2021-06-15 20:09:29 +0300
committerGuy Bedford <guybedford@gmail.com>2021-06-25 21:26:49 +0300
commitf4d0a6a07bf72c556c5ba8e98b3b23327c273e80 (patch)
treebbc9c36d93f4868119d9d2a9bb776e003919d752 /doc/api/assert.md
parent44ecd418923310aafbef8c6ccf9a9920bcf7af85 (diff)
doc: esm examples /w imports for process, Buffer
PR-URL: https://github.com/nodejs/node/pull/39043 Reviewed-By: Bradley Farias <bradley.meck@gmail.com>
Diffstat (limited to 'doc/api/assert.md')
-rw-r--r--doc/api/assert.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/api/assert.md b/doc/api/assert.md
index 7eb952ace7b..037d233be0a 100644
--- a/doc/api/assert.md
+++ b/doc/api/assert.md
@@ -240,6 +240,7 @@ for the verification to take place. The usual pattern would be to call it in a
```mjs
import assert from 'assert';
+import process from 'process';
const tracker = new assert.CallTracker();