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:
authorMark Skelton <mskelton@widen.com>2021-10-11 17:50:38 +0300
committerNode.js GitHub Bot <github-bot@iojs.org>2021-10-12 08:06:35 +0300
commit15ce81a4645d5d920187f3b2f832b472d8c47214 (patch)
tree4c3fa9d92c7ff53de39373e82918874dd3f336d0 /doc/api/assert.md
parent54a85d6bb5f8bacec2842caa2172a4fa6864b234 (diff)
doc: remove ESLint comments which were breaking the CJS/ESM toggles
PR-URL: https://github.com/nodejs/node/pull/40408 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Zijian Liu <lxxyxzj@gmail.com>
Diffstat (limited to 'doc/api/assert.md')
-rw-r--r--doc/api/assert.md11
1 files changed, 0 insertions, 11 deletions
diff --git a/doc/api/assert.md b/doc/api/assert.md
index 94272b4caae..6a9d830158d 100644
--- a/doc/api/assert.md
+++ b/doc/api/assert.md
@@ -958,7 +958,6 @@ function. See [`assert.throws()`][] for more details.
Besides the async nature to await the completion behaves identically to
[`assert.doesNotThrow()`][].
-<!-- eslint-disable no-restricted-syntax -->
```mjs
import assert from 'assert/strict';
@@ -983,7 +982,6 @@ const assert = require('assert/strict');
})();
```
-<!-- eslint-disable no-restricted-syntax -->
```mjs
import assert from 'assert/strict';
@@ -993,7 +991,6 @@ assert.doesNotReject(Promise.reject(new TypeError('Wrong value')))
});
```
-<!-- eslint-disable no-restricted-syntax -->
```cjs
const assert = require('assert/strict');
@@ -1042,7 +1039,6 @@ function. See [`assert.throws()`][] for more details.
The following, for instance, will throw the [`TypeError`][] because there is no
matching error type in the assertion:
-<!-- eslint-disable no-restricted-syntax -->
```mjs
import assert from 'assert/strict';
@@ -1054,7 +1050,6 @@ assert.doesNotThrow(
);
```
-<!-- eslint-disable no-restricted-syntax -->
```cjs
const assert = require('assert/strict');
@@ -1069,7 +1064,6 @@ assert.doesNotThrow(
However, the following will result in an [`AssertionError`][] with the message
'Got unwanted exception...':
-<!-- eslint-disable no-restricted-syntax -->
```mjs
import assert from 'assert/strict';
@@ -1081,7 +1075,6 @@ assert.doesNotThrow(
);
```
-<!-- eslint-disable no-restricted-syntax -->
```cjs
const assert = require('assert/strict');
@@ -1097,7 +1090,6 @@ If an [`AssertionError`][] is thrown and a value is provided for the `message`
parameter, the value of `message` will be appended to the [`AssertionError`][]
message:
-<!-- eslint-disable no-restricted-syntax -->
```mjs
import assert from 'assert/strict';
@@ -1111,7 +1103,6 @@ assert.doesNotThrow(
// Throws: AssertionError: Got unwanted exception: Whoops
```
-<!-- eslint-disable no-restricted-syntax -->
```cjs
const assert = require('assert/strict');
@@ -2346,7 +2337,6 @@ message as the thrown error message is going to result in an
`ERR_AMBIGUOUS_ARGUMENT` error. Please read the example below carefully if using
a string as the second argument gets considered:
-<!-- eslint-disable no-restricted-syntax -->
```mjs
import assert from 'assert/strict';
@@ -2383,7 +2373,6 @@ assert.throws(throwingFirst, /Second$/);
// AssertionError [ERR_ASSERTION]
```
-<!-- eslint-disable no-restricted-syntax -->
```cjs
const assert = require('assert/strict');